#javascript
Read more stories on Hashnode
Articles with this tag
checking the validity of JavaScript types with a library · TypeScript extends JavaScript to ensure that a variable's data conforms to a certain form, or...
ready-to-use code · JavaScript has ready-made functions that come with the language; we will go through a few of them here: Functions for...
optional shorthand ways of writing if/else statements · Introduction As a beginner, you might write something like this: function calculatePrice(price,...
combining strings with variables neatly · When concatenating strings with variables in old JavaScript, we can encounter things like this: var x =...
what actually happens when we use JavaScript? · Intro Before going through the following, this article covers: the JavaScript Engine (the interpreter...
consuming and digesting other people's data · Oftentimes, developers do not collecting the data for the websites they build; in this page, we will look...