Category: nodejs
The Range Function in Javascript Let’s review the following JavaScript function called range. This function generates an array of numbers within a specified range, with a default step of …
What is BitShares (BTS) Blockchain? BitShares (BTS) is a high-performance blockchain platform designed to serve as a decentralized exchange (DEX). It was introduced in 2014 as one of the …
What is Azure Function? Azure Functions is a serverless compute service that enables you to run code on-demand without having to explicitly provision or manage infrastructure. Azure Functions supports …
In one of my project, I have the following code (Node/Javascript) that invokes a few APIs one by one (sequentially). However, these HTTPS requests can be done in parallel …
In Bitcoin transactions, there is a “change” parameter. See the following NodeJs code to send amount of bitcoins from “fromAddress” (aka unspent transaction outputs – UTXOs) to “receivingAddress”, and …