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

ありがとうございました。