Ask A Question

Notifications

You’re not receiving notifications from this thread.

Why have the three dots syntax?

shreyathakare asked in Javascript

So basically I have a doubt in java developement which i don’t get what’s the difference between these two lines:

[...cars].forEach((car) => console.log(car));

AND

cars.forEach((car) => console.log(car));

Reply

The triple dots are called the object spread operator. Basically it allows you to expand variables in useful ways to simplify the code you're writing. Here's a couple articles about it:

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_syntax
https://medium.com/@oprearocks/what-do-the-three-dots-mean-in-javascript-bc5749439c9a

Reply
Join the discussion
Create an account Log in

Want to stay up-to-date with Ruby on Rails?

Join 84,387+ developers who get early access to new tutorials, screencasts, articles, and more.

    We care about the protection of your data. Read our Privacy Policy.