Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
</body>
</html>
 
var fn1 = function (a) {
  a = "foo"
  console.log(arguments[0])
}
fn1(2)
var fn2 = function (a) {
  arguments[0] = "bar"
  console.log(a)
}
fn2(2)
var fn3 = function (a) {
  "use strict";
  a = "foo"
  console.log(arguments[0])
}
fn3(2)
var fn4 = function (a = 0) {
  arguments[0] = "bar"
  console.log(a)
}
fn4(2)
var fn5 = function (...args) {
  arguments[0] = "bar"
  console.log(args[0])
}
fn5(2)
var fn6 = function () {
  const [a] = arguments
  arguments[0] = "bar"
  console.log(a)
}
fn6(2)
Output 300px

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
neccccpro
0viewers