Skip to content Skip to sidebar Skip to footer
Showing posts with the label Arrow Functions

Angular2 Subscribe Understand Arrow Function

I try to understand arrow functions of typescript by the example of Angular 2 Observable subscribe … Read more Angular2 Subscribe Understand Arrow Function

How To Bind 'this' To An Object Arrow Function?

Let us suppose we have an object profile with properties name and getName method (arrow function). … Read more How To Bind 'this' To An Object Arrow Function?

Reduce Array To Object Using Arrow Function

I'm playing around with the limits of array and arrow functions and I'm trying to convert t… Read more Reduce Array To Object Using Arrow Function

What Is Double Arrow Function?

What is 'let x= something1 => something2 => something3' ? I have this code and I'… Read more What Is Double Arrow Function?

Javascript Ecma6 Change Normal Function To Arrow Function

I have that code: function defineProperty(object, name, callback){ if(object.prototype){ … Read more Javascript Ecma6 Change Normal Function To Arrow Function

Nodejs Arrow Function With Expression

According to the documentation, you can return an expression from an arrow function: (param1, param… Read more Nodejs Arrow Function With Expression

Arrow Functions Inside Map In Render. React

I'd like to know if there is any performance difference between passing an arrow function to a… Read more Arrow Functions Inside Map In Render. React

What Are Es6 Arrow Functions, How Do They Work?

I am curious about ES6 arrow functions (fat arrow functions). Are they simply syntactic sugar deriv… Read more What Are Es6 Arrow Functions, How Do They Work?