# 単純なaddEventListenerはだめ
enum列挙型にする
buttonにイベントリスナーを加える場合
const enum EventName {
CLICK = 'click'
}
button.addEventListener(EventName.CLICK, () => alert("clickされました"))
Go to list of users who liked
More than 3 years have passed since last update.
# 単純なaddEventListenerはだめ
enum列挙型にする
buttonにイベントリスナーを加える場合
const enum EventName {
CLICK = 'click'
}
button.addEventListener(EventName.CLICK, () => alert("clickされました"))
Register as a new user and use Qiita more conveniently
Go to list of users who liked