#webdev
Read more stories on Hashnode
Articles with this tag
<input value='something'> If we change the user input (text on ui) to be 'something else', what happens to the attribute value in the html and what...
A closure is a function with its outer function lexical scope/environment. What does 'lexical' mean? 'Lexical' means relating to words, so the...
To start an npm project, you can run npm init in the directory where you want to initiate the project. You will be prompted with some prompts about...
Me too have wondered what is the meaning of literal that is shoved between text while the text itself makes sense. String literal they say, and I am...
Not All, I have tricked you. typeof functions When you do typeof <someFunction>, you get back 'function'. But, you might have heard that functions...
Not Really All What are arrays? Arrays are iterables. Ok, so what is an iterable? Iterables are objects that have Symbol.iterator method. Alright, so...