JavaScript menduplikasi nama parameter tidak diperbolehkan

"use strict";

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

hello();
SAMER SAEID