Course · Section 8: How JavaScript Works Behind the Scenes · Lecture 103: Memory Management: Primitives vs. Objects
Implement `tryChange(n)` that passes `n` to a helper which reassigns its own parameter, then returns the original `n`. Primitives are copied, so the original is unchanged.
+ 1 hidden test run on Submit.
Primitives are passed by value, so reassigning the helper's parameter leaves the original untouched.
Run your code to see results.