The js toReversed() call on an array

Hi
This snippet of code

const array1 = [‘a’, ‘b’, ‘c’, ‘d’];
const newOrder = array1.toReversed();
console.log(newOrder);

produces the error
/home/ccuser/workspace/arrays-review-arrays/main.js:13
const reversedItems = items.toReversed();
^

TypeError: items.toReversed is not a function
at Object. (/home/ccuser/workspace/arrays-review-arrays/main.js:13:29)
at Module._compile (module.js:571:32)
at Object.Module._extensions…js (module.js:580:10)
at Module.load (module.js:488:32)
at tryModuleLoad (module.js:447:12)
at Function.Module._load (module.js:439:3)
at Module.runMain (module.js:605:10)
at run (bootstrap_node.js:427:7)
at startup (bootstrap_node.js:151:9)
at bootstrap_node.js:542:3

what am I doing wrong?

You’ll likely need to update your version of Node. You can check with node -v

It wasn’t working for me with v18.18, so I updated to 20.9 - I used the installer here: Node.js

After updating to 20.9 .toReversed() now works for me!

1 Like

Updated NOde.js and the function call works. Thank you

1 Like