CSS Pixel art in less than 5 minutes
Try Pixal now!

Search for a command to run...
Articles tagged with #codenewbies
Try Pixal now!

Make your websites even more aesthetic

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...

Click Me
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...

There are 2 famous paradigms in Javascript, OOP Functional Programming While many languages run fully on OOP like C#, Java, etc., there are some like Python and JS in which we can freely work in both of these. But in Javascript, there is something ...
