mirror of
https://github.com/leporello-js/leporello-js
synced 2026-01-13 21:14:28 -08:00
record io
This commit is contained in:
16
record_io/new.js
Normal file
16
record_io/new.js
Normal file
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
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))
|
||||
Reference in New Issue
Block a user