Skip to content

Instantly share code, notes, and snippets.

@ifukazoo
Created October 2, 2013 21:30
Show Gist options
  • Save ifukazoo/6800814 to your computer and use it in GitHub Desktop.
Save ifukazoo/6800814 to your computer and use it in GitHub Desktop.
ブックマークレット
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<a href='javascript:
var e = "",r = "";
do {
e = prompt("Expression: " + e + "\n" + r + "\n",e);
try { r = "Result :" + eval(e); }
catch (ex) { r = ex; }
} while (e);
void 0;
'>
JavaScript Evaluator
</a>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment