...
/Value vs. Reference with ES2015
Value vs. Reference with ES2015
We'll learn how 'const' works with the concept of value vs. reference in JS.
We'll cover the following...
Value vs. Reference with const
There’s a small piece of the discussion of const
that was left out in the related previous lesson. We haven’t discussed how it works with objects. To truly understand that, we first needed an understanding of value vs. reference in JS. With that understanding, ...