mirror of
https://github.com/leporello-js/leporello-js
synced 2026-01-14 05:14:28 -08:00
17 lines
170 B
JavaScript
17 lines
170 B
JavaScript
/*
|
|
function f() {
|
|
console.log('n', new.target)
|
|
}
|
|
|
|
f()
|
|
new f()
|
|
*/
|
|
|
|
const f = new Function(`
|
|
return arguments.length
|
|
`)
|
|
|
|
|
|
console.log(f(1,2,3))
|
|
console.log(f(1,2,3,4))
|