BLOG

Latest Articles

JavaScript replaceWith() Method

To make use of the JavaScript replacewith method, we need to reference the element/node that we want changed and add the new element/node as an argument. Also, …

By olorunfemiakinlua · 3 min read · JavaScript

JavaScript Thenable Object

JavaScript thenable is an object that holds or implements the then() method and can have two callbacks, one for when the Promise is fulfilled, and one for when …

By olorunfemiakinlua · 6 min read · JavaScript

Golang []byte to int Conversion [SOLVED]

Convert ASCII []byte to int, Convert ASCII []byte to int with validation, Using math/big package to convert []byte to int, Using binary package to convert byte …

By tuannguyen · 4 min read · GO

Golang channel with multiple receivers [SOLVED]

Reading from a single channel shared with multiple goroutines is concurrency in action. Concurrency in Go is the ability for a goroutine(s)(function) to run

By antonyshikubu · 6 min read · GOLANG Solutions

Math.abs() Method in JavaScript

The Math.abs() method allows us to get the absolute value of a number, and can come useful in certain mathematical operations we carry out in JavaScript.

By olorunfemiakinlua · 3 min read · JavaScript