Due to a bug in node.js 4.3, we need to declare and init on separate lines, or else node.js performs about four times slower.

See: https://blog.famzah.net/2016/09/10/cpp-vs-python-vs-php-vs-java-vs-others-performance-benchmark-2016-q3/#comment-21872
master
Ivan Zahariev 2016-10-18 11:42:01 +03:00
parent 5e9048ef4c
commit 6716271477
1 changed files with 5 additions and 1 deletions

View File

@ -25,7 +25,11 @@ function get_primes7(n) {
m = 2*i + 3;
}
var res = [2];
// due to a bug in node.js 4.3, we need to declare and init on separate lines
// or else node.js performs about four times slower
var res = [];
res.push(2);
for (var x = 0; x < s.length; x++) {
if (s[x]) {
res.push(s[x]);