Expressions Vs. Statements in JS
Nov 24, 2022 · 3 min read · Statements vs. expressions Knowing this is essential before writing any JS code. const q = 2 This is a simple line of code that creates a constant q and assigns it the value 5; nothing fancy, right? const w = hiThere(); It simply creates a const na...
Join discussion