Pass by value and Pass by reference in JS
In this article, we'll look at what is pass by value and pass by reference in JS.
Before starting this, In javascript has 5 types that are passed by value: boolean, null, undefined, String, and Number.
// Primitives
const number= 10;
const bool = fa...
codingpath.hashnode.dev3 min read
Omkar Ghate
Learning Full Stack Web Development
This is really helpful, thanks for the blog!