Created
September 2, 2025 22:01
-
-
Save Zylvian/22a1a48fa5f2815ee341fbbaf75661f3 to your computer and use it in GitHub Desktop.
ones.js
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
console.log('Happy developing ✨') | |
var global = ''; | |
function storeValue() { | |
const result = prompt('Provide the new data if you want to change it. Otherwise, click Cancel.') | |
if(result !== null) { | |
global = result; | |
} | |
alert(global) | |
} | |
storeValue() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment