Blogs tagged curry
-
As I mentioned in What should an ABAPer continue to learn as an application developer, function programming language is a mind -blower to ABAPers who have got used to ABAP as an imperative programming language. One of important concept in... Read More »0Comments6Likes -
There is a piece of JavaScript codes below: const add = x => y => x + y var c = add(1)(2); When executed, c is equal to 3 in the runtime. Why? Let’s debug in Chrome. 1. Only one argument, 1. Pay attention to the highlight part in... Read More »0Comments0Likes