javascript & ajax samples to improve your web development.
トップページ
/ JavaScriptオンラインエディタ
JavaScriptオンラインエディタ
スクリプトを入力ボックスに書いて「スクリプト実行」ボタンを押すとWEB上でJavaScriptを実行&動作確認できます。
<script type="text/javascript"> document.write('0の0乗は'+Math.pow(0,0)+"です<br>"); document.write('0の1乗は'+Math.pow(0,1)+"です<br>"); document.write('1の1乗は'+Math.pow(1,1)+"です<br>"); document.write('1の10乗は'+Math.pow(1,10)+"です<br>"); document.write('2の3乗は'+Math.pow(2,3)+"です<br>"); document.write('-2の3乗は'+Math.pow(-2,3)+"です<br>"); document.write('2の4乗は'+Math.pow(2,4)+"です<br>"); document.write('-2の4乗は'+Math.pow(-2,4)+"です<br>"); </script>
スクリプト実行結果が表示されます。