deplicate parameters

🚧 施工中

JSobjectsbuilt-inFunctionparameter ⟩ duplicate parameters

function g(x, y, x, y) {
    //           ^
    // ⛔ SyntaxError: 
    //    Duplicate parameter name not allowed in this context
    //    (note: this is a compile-time error)
    
    'use strict';        // ⭐️ strict mode
    
    return [x, y];
}

👉 duplicate parameter not allowed in strict mode❗️

Last updated

Was this helpful?