Are any JS implementations currently (or supporting a roadmap) fast, vectorized array operations, or similar?

I would like to do some matrix / vector arithmetic in JavaScript and was wondering if any browsers or other JS implementations really support vectorized operations, for example, for quickly summing records of two arrays (or summing, or something else). Even if this does not currently mean that it compiles to vectorized operations, at least some language support will be nice when it is implemented - I would use functions or syntax to support it as a step in the right direction, ( It's clear that the search for “javascript vectorization” is pretty much about graphics and SVG.)

+3
source share

Source: https://habr.com/ru/post/1748325/


All Articles