Tag: anonymous function

  • Fat Arrow Functions JavaScript Programming Tutorial

    Lesson Code: http://www.developphp.com/video/JavaScript/Fat-Arrow-Functions-JavaScript-Programming-Tutorial Crash course on using the new Arrow functions in JavaScript, introduced in ECMAscript Edition 6 to provide a new approach to writing anonymous functions. Arrow functions have 2 major advantages over traditional anonymous functions. (a) They reduce the amount of code you need to write. (b) In object oriented programming, the “this”…

  • Javascript – How to Use Callbacks

    a callback is a function that is passed as an argument to another function, this makes functions more flexible the callback is invoked inside the function you can also use an anonymous function as a callback the use of callbacks is very common, and are used often ———————————————————– http://atechapart.com | http://linkedin.com/in/alvinsanchez see my codepens @…