November 2017
Intermediate to advanced
670 pages
17h 35m
English
Since JavaScript is a weakly typed language, we don't need to specify that the type of our a and b variables are integers:
var add = function (a) { return function (b) { return a + b; };};add2 = add(2);