Skip to main content

TIL 5-20-21

Function Expression Hoisting

function statement

function cacheRules() {
 return '💴'
}

function expression

const cacheRules = function() {
 return '🤯'
}

function statement is hoisted, while the expression is not.

Quick find

Search the garden