✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що відбудеться при виконанні такого коду?
'use strict';function test() { if (true) { function inner() { return 'inside'; } } return typeof inner;}console.log(test());