This is how much Maths you need as a Web developer when starting out
How equations can open new doors for you
Feb 12, 20221 min read36

Search for a command to run...
Articles tagged with #programming-blogs
How equations can open new doors for you

Why you'll love this platform

Short circuiting is a very important topic for beginners. It is very useful and you will also use it in React, or other JS frameworks too. Truthy and falsy values Photo by James Harrison on Unsplash First, we need to understand what True and False va...

As you know from this blog post, classes are just functions in disguise. We used this syntax: function Animal(rating) { this.rating = rating } Animal.prototype.run = function() { console.log("I run") } But why do we use Animal.prototype in...
