Faster JavaScript Sorting Using Typed Arrays
JavaScript has two kinds of arrays: standard ones and typed ones. These two kinds of arrays have different capabilities. Standard arrays can grow, but typed arrays can not. Standard arrays can hold numbers, strings, objects, etc.. Typed arrays can only hold specific numeric data types: 8-bit, 16-bit, 32-bit and 64 bit unsigned and signed integers, […]
Read more "Faster JavaScript Sorting Using Typed Arrays"