dan.the.discloserD
Deno4y ago
8 replies
dan.the.discloser

can i bypass strict mode?

When I try use Deno Run , it complains

error: Uncaught TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them
const answer = o[s];




export function func(o: object, s : string) {
    const answer = o[s];
    return answer}



^
Was this page helpful?