プロパティアクセサーを関数に渡す必要があります。次に例を示します。
(defn test [access]
(.log js/console (str (access js/window))))
(test #(.-screenLeft %))
これが最善の方法ですか?以下は機能しません。
(test .-screenLeft)
プロパティアクセサーを関数に渡す必要があります。次に例を示します。
(defn test [access]
(.log js/console (str (access js/window))))
(test #(.-screenLeft %))
これが最善の方法ですか?以下は機能しません。
(test .-screenLeft)