#beginners
Read more stories on Hashnode
Articles with this tag
Abstraction allows us to hide our implementation. It is one of the key properties of Object-Oriented Programming (OOP). In java, it is implemented...
In react, Refs provide a way to access or reference the DOM element from within a parent component. Generally, in react, we would use props for any...
Javascript handles values that don't or shouldn't exist by the use of undefined, not defined & null keywords. These may seem similar, but there are...
Again Java passes variables in functions similar to js. Check out the detailed explanations...
It's both! Let's find out how. Pass by value Whenever a function is called, if the value of the variable is passed directly as the parameter, then the...
For any programming language to be called a pure object-oriented language, it should satisfy all the 7 rules below : Encapsulation/Data...