Last active
October 24, 2017 18:02
-
-
Save vikpande/4b5f875b5c8546bf11f31e73593bfed8 to your computer and use it in GitHub Desktop.
JS commonly used commands
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const race = '100m Dash'; | |
| const winners = ['Hunter Gath', 'Singa Song', 'Imda Bos']; | |
| const win = winners.map((winner, i) => ({name: winner, race, place: i + 1})); | |
| const ages = [23,62,45,234,2,62,234,62,34]; | |
| const old = ages.filter(age => age >= 60); | |
| console.log(old); | |
| const names = ['wes', 'kait', 'lux']; | |
| const fullNames = names.map(function(name) { | |
| return `${name} bos`; | |
| }); | |
| const fullNames2 = names.map((name) => { | |
| return `${name} bos`; | |
| }); | |
| const fullNames3 = names.map(name => { | |
| return `${name} bos`; | |
| }); | |
| const fullNames4 = names.map(name => `${name} bos`); | |
| const fullNames5 = names.map(() => `cool bos`); | |
| const sayMyName = (name) => { | |
| alert(`Hello ${name}!`) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment