About 397,000 results
Open links in new tab
  1. javascript - What does arguments[0] and arguments[1] mean …

    Apr 17, 2018 · here is a working example of using arguments[0] and arguments[2]: objIE.ExecuteScript "arguments[0].value = arguments[1]", …

  2. The arguments object - JavaScript | MDN - MDN Web Docs

    Apr 10, 2025 · arguments is an array-like object, which means that arguments has a length property and properties indexed from zero, but it doesn't have Array 's built-in methods like …

  3. Javascript check arguments for zero value - Stack Overflow

    Aug 27, 2012 · I'm writing a function that checks if arguments are zero, and it doesn't seem to work correctly. Note: Using Chrome as my browser, but this code should be cross-browser …

  4. javascript - What does the argument[0] means in JavascriptExecutor

    Mar 6, 2019 · arguments[x] is a way to reference the parameters passed to a function/method. Since arguments is an object you can access the values via their key. Using this can be …

  5. What is arguments in JavaScript - GeeksforGeeks

    Jan 27, 2022 · The arguments is an object which is local to a function. You can think of it as a local variable that is available with all functions by default except arrow functions in JavaScript. …

  6. JavaScript Function Parameters - W3Schools

    JavaScript functions have a built-in object called the arguments object. The argument object contains an array of the arguments used when the function was called (invoked). This way you …

  7. Understanding the arguments Object in JavaScript

    Oct 1, 2024 · The arguments object is zero-indexed, meaning you can access its values like an array (arguments[0], arguments[1], etc.). Key Characteristics of the arguments Object Array …

  8. Arguments Objects in JavaScript - Medium

    May 24, 2020 · function test() {arguments[0] = 100; console.log(arguments[0]);} test(); //100 test(1); //100. When you updating arguments, it also update parameter value and vice versa.

  9. arguments: A JavaScript Oddity - SitePoint

    Nov 11, 2008 · What does ‘arguments[0]’ mean in JavaScript? arguments[0]’ refers to the first argument passed to a function. Similarly, ‘arguments[1]’ refers to the second argument, and so …

  10. The arguments parameter in Javascript - DEV Community

    Oct 16, 2019 · The arguments object has a property named length that returns the number of arguments passed to the function. We can access these parameters with an array-like …

  11. Some results have been removed
Refresh