La duplication javascript d'un nom de paramètre n'est pas autorisée

"use strict";

function hello(p1, p1) { console.log('hello')}; // throws an error

hello();
SAMER SAEID