Skip to content

Instantly share code, notes, and snippets.

View imtiazrayhan's full-sized avatar
🏠
Working from home

Imtiaz Rayhan imtiazrayhan

🏠
Working from home
View GitHub Profile
@imtiazrayhan
imtiazrayhan / arrow-functions.js
Created February 23, 2018 00:13
Arrow Functions Examples For Blog Post
//Array of birthyear.
const years = [1992, 1978, 1986, 1995];
//Calculating age with a normal function.
var ages = years.map( function(yr) {
return 2018 - yr;
});
console.log(ages);