#javascript
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...
When we query an element in js using document.querySelector syntax. We might would want to stop a bit and think about what we wrote...
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...