このスクリプトの説明が必要です
var test = {
property_1 : 'aaa',
property_2 : 'bbb'
}
var place = function(str, ph){
return test[ph];
}
定義の意味とplace
その関数の戻り値の型は何ですか?
パラメータがどこから来たのか理解できませんstr
かph
?
これは、 19行目でこれを行う、私が読んだスクリーンショットのチュートリアルです
ありがとうございました。