Functions
var canada = function() {
console.log("cold");
}function india() {
console.log("warm");
}canada(); // defined at run time that what this function does
india(); // defined at parse time - hoistingLast updated
var canada = function() {
console.log("cold");
}function india() {
console.log("warm");
}canada(); // defined at run time that what this function does
india(); // defined at parse time - hoistingLast updated