6 lines
82 B
JavaScript
6 lines
82 B
JavaScript
function f() { return 1; }
|
|
{
|
|
function f() { return 2; }
|
|
}
|
|
assert.equal(f(), 1);
|