var scoping refresher
by Vanessa RC
JavaScript
// can be reasigned and updated
var widht = 50;
//
let height = 200;
const key = 'this is a key';
by Vanessa RC
// can be reasigned and updated
var widht = 50;
//
let height = 200;
const key = 'this is a key';