案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<script type="text/javascript">
2
3
document.write(Math.pow(0,0) + "<br />")
4
document.write(Math.pow(0,1) + "<br />")
5
document.write(Math.pow(1,1) + "<br />")
6
document.write(Math.pow(1,10) + "<br />")
7
document.write(Math.pow(2,3) + "<br />")
8
document.write(Math.pow(-2,3) + "<br />")
9
document.write(Math.pow(2,4) + "<br />")
10
document.write(Math.pow(-2,4) + "<br />")
11
12
</script>