Skip to content

Instantly share code, notes, and snippets.

@mariyadiminsky
Created May 16, 2016 10:33
Show Gist options
  • Save mariyadiminsky/01440ae3ba605b02b068993f3bee8cb8 to your computer and use it in GitHub Desktop.
Save mariyadiminsky/01440ae3ba605b02b068993f3bee8cb8 to your computer and use it in GitHub Desktop.
// Before
let bunny = function(name) {
console.log("Usagi");
}
// After
let bunny = (name) => console.log("Usagi")
// Step 1: Remove the word ‘function’.
let bunny = (name) {
console.log("Usagi");
}
// Step 2: If your code is less than a line, remove brackets and place on one line.
let bunny = (name) console.log("Usagi");
// Step 3. Add the hash rocket.
let bunny = (name) => console.log("Usagi");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment