标签: google-chrome console.log
function test(){console.log('tested')} test()
当我将其放在chrome控制台中时,我希望得到“测试”的输出。但是,“ undefined”是我得到的:
> function test(){console.log('tested')} test() < undefined