Answer

Answer

@js_test

Ответ:

"string"

Объяснение:
typeof null -> "object" typeof "object" - > "string"

Код для проверки:

console.log( typeof typeof null ); 

Report Page