JavaScript duplicando um nome de parâmetro não é permitido
"use strict";
function hello(p1, p1) { console.log('hello')}; // throws an error
hello();
SAMER SAEID
"use strict";
function hello(p1, p1) { console.log('hello')}; // throws an error
hello();