// Plain JavaScript - no error until the code actually runs function add(a, b) { return a + b; } console.log(add(5, "10")); // "510" - probably not what you wanted