javascript - How to create a polyfill for spread operator - Stack Overflow

admin2025-04-04  0

I was trying to create a polyfill for the spread operator. My objective is to create something similar to spread operator where instead of triple dots I can use triple @@@ symbols.

For example, in ES6

function sum(x, y, z) {
  return x + y + z;
}

const numbers = [1, 2, 3];

console.log(sum(...numbers));
// expected output: 6

I was trying to implement similar functionalities


// Instead of triple dots, it should be triple @
console.log(sum(@@@numbers));
// expected output should be 6

I expect the output of console.log(sum(@@@numbers)); to be 6.

I was trying to create a polyfill for the spread operator. My objective is to create something similar to spread operator where instead of triple dots I can use triple @@@ symbols.

For example, in ES6

function sum(x, y, z) {
  return x + y + z;
}

const numbers = [1, 2, 3];

console.log(sum(...numbers));
// expected output: 6

I was trying to implement similar functionalities


// Instead of triple dots, it should be triple @
console.log(sum(@@@numbers));
// expected output should be 6

I expect the output of console.log(sum(@@@numbers)); to be 6.

Share Improve this question asked Jul 18, 2019 at 10:10 Saswata ArabindaSaswata Arabinda 5672 gold badges8 silver badges17 bronze badges 7
  • 11 It's impossible, because what you're doing violates Javascript syntax, and syntax is not polyfillable. Transpileable, sure, but not polyfillable. – CertainPerformance Commented Jul 18, 2019 at 10:11
  • so any workaround ?? – Saswata Arabinda Commented Jul 18, 2019 at 10:19
  • No - like I said, it's impossible – CertainPerformance Commented Jul 18, 2019 at 10:19
  • You can of course just write sum.apply(null, numbers), but you cannot introduce your own syntax. – Bergi Commented Jul 18, 2019 at 10:26
  • 1 @SaswatArabinda There is no way to define custom syntax in JavaScript. You need to use a transpiler that piles your custom syntax to working code - and of course then you should just use a usual transpiler that piles the real spread syntax into legacy code. – Bergi Commented Jul 18, 2019 at 10:31
 |  Show 2 more ments

1 Answer 1

Reset to default 9

You cannot create a polyfill for spread operator.

The proper way to deal with such backward patibility issues is to write your code in ES6, and use transpiler like babel to convert it to ES5 automatically.

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1743731728a216695.html

最新回复(0)