#javascript
Read more stories on Hashnode
Articles with this tag
textarea: A multiline input field <textarea placeholder="Ask me anything!" id="chat-input"></textarea> <!-- CSS --> textarea{ width:...
For of loop A much easier loop to use compared to a for loop. const catsData = [ { emotionTags: ["moody"], isGif: false, ...
How to delay a page rendering: setTimeout It's possible to hold a component from displaying in a regular workflow using setTimeout. console.log('What...
Adding Firebase to My Project As this is a new integration with Firebase, I am opting for modular API to add and initialize Firebase SDK. I created a...
Styles on <input> Selector When we add the width to be 100% of the container, the padding also gets added twice and the input field grows bigger than...
Setting up Javascript file To include a JS file in an HTML code, you type the script tag before closing the body tag <script src="index.js"...