ex6-5
実行結果
f内のxの値: undefined
ソース
function f(x) { return `f内のxの値: ${x}`; } console.log(f()); // "f内のxの値: undefined"