-
-
Save kobitoDevelopment/57b9c58be9877fb52873d201a5255bfa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const result = confirm("OKかキャンセルのどちらかを押してください"); | |
if (result) { | |
console.log("OKが押されました"); | |
} else if (!result) { | |
console.log("キャンセルが押されました"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment