Skip to content

Instantly share code, notes, and snippets.

@KimTrijnh
Created January 15, 2019 11:12
Show Gist options
  • Save KimTrijnh/59abecef5e6307ddf300c99d138d07c2 to your computer and use it in GitHub Desktop.
Save KimTrijnh/59abecef5e6307ddf300c99d138d07c2 to your computer and use it in GitHub Desktop.
Javascript from FFC

This is Javascript hint from FFC program

@KimTrijnh
Copy link
Author

ES6

  1. var, let & const
var a = 2;
a = 3; 
console.log(a) //3
let a = 2;
a = 3; //error
var a = 3; //error

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment