Skip to content

Instantly share code, notes, and snippets.

@Zylvian
Created September 2, 2025 22:01
Show Gist options
  • Save Zylvian/22a1a48fa5f2815ee341fbbaf75661f3 to your computer and use it in GitHub Desktop.
Save Zylvian/22a1a48fa5f2815ee341fbbaf75661f3 to your computer and use it in GitHub Desktop.
ones.js
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