#programmer
Read more stories on Hashnode
Articles with this tag
1. Test it out How does the software currently work? Especially around the area where you would like to fix or add to. It helps to get an idea of how...
The Module Pattern This pattern is used to isolate code from the Global scope. The code inside the isolated container can only be accessed if it is...
If you are familiar with OOP concepts look for the header with practical examples below. If not please continue reading. 😊 My first introduction to...
Javascript is a synchronous language, meaning it runs the code you write line by line until it gets to the end of the execution code. However, this...
One of the ways JavaScript developers debug their code is by using console.log to figure out what the output of a particular variable or condition...
Hi 👋, back again with another topic on the Learning JavaScript series I am doing and this time I would be discussing Local and Session Storage with...