#vanilla-js-1
Read more stories on Hashnode
Articles with this tag
Although self-learning is great, it does come with its pitfalls. Going through the posts of budding developers, it soon becomes apparent that two...
JavaScript used to have two ways of writing a string: using single quotes or using double quotes. With template literals, we now have a third way:...
Among the useful features that have been added to JavaScript is this: ... That's right, three dots one after the other. These three dots can be used...
The ternary operator is simply a shorthand for an if...else statement. It is used very liberally by JavaScript developers (and developers of other...