#javascript
Read more stories on Hashnode
Articles with this tag
APNG is an extension of the PNG format, adding support for animated images. In modern browser, the support is pretty good and we can use apng directly...
We know that there is a special value called NaN in JavaScript. Just as the name goes, it is used to represent a not a number value. There are some...
To express exact unsigned 8-bit integers, JavaScript provides Uint8Array and Uint8ClampedArray. So what is the difference between them? Which one...
In a previous article, I talked about how to implement global states in react by context. In this article, let's see how to do it manually, the...
In the previous article, I wrote something about how to build a 8-bit adder by logic gates. Yes the adder is working but only for positive numbers. So...
In this article, let's build a 8-bit adder using only logic gates. The first thing to do is to implement all the gates we need. Since these are just...