003-ES6-const

by Chelo Quilón

JavaScript

var msg = "Hello";
//var age = 40;
let age = 30;

const msg = "Adiós";
const age = 20;