3
Recently I discovered that there are Rest parameters in the Javascript which has the following syntax:
function (a, b, ...c) {
// Code.
}
But I didn’t understand very well what they are, what they are for and how they can be useful in the code.