Skip to content

Instantly share code, notes, and snippets.

@draxaris1010
Forked from DraxAris/pop.js
Created July 7, 2020 16:02
Show Gist options
  • Select an option

  • Save draxaris1010/e7cefd2bd6040bcb9cf665195171e466 to your computer and use it in GitHub Desktop.

Select an option

Save draxaris1010/e7cefd2bd6040bcb9cf665195171e466 to your computer and use it in GitHub Desktop.
Pop-up window in Js & HTML to use Js console in phone
function pop(){
var input = window.prompt("enter a command","");
var output = eval(input);
eval(input);
console.log(output);
alert(output);
};
window.onload = pop();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment