Are there any standard ways of marking a function argument as unused in JavaScript, analogous to starting a method argument with an underscore in Ruby?
How about using the function arguments object?
function
arguments
function third() { const [,,thirdArg] = arguments; return thirdArg; } console.log(third(1,2,3));