Queues in JavaScript

When it comes to the FIFO (First In, First Out) data structure commonly referred as a queue, JavaScript doesn't provide any built-in implementation. If you quickly seach online, people will mostly te...
0 Read More

Go string concatenation benchmark

TL;DR strings.Builder is the fastest and takes least memory. + is tied in memory but slightly less performant (although much more convenient). strings.Join is not a bad alternative for arrays...
0 Read More