首页 > 代码库 > JavaScript语言实现类似这样的效果: 3.grams.flour
JavaScript语言实现类似这样的效果: 3.grams.flour
JavaScript语言实现类似这样的效果: 3.grams.flour
参考 Javascript: The Good Parts,第33页
代码如下:
<html>
<body>
<script type="text/javascript">
// copied from page 33 of Javascript: The Good Parts
Function.prototype.method = function (name, func)
{
this.prototype[name] = func;
return this;
}
Number.method(‘chi‘, function() {
return this*0.333;
});
document.writeln( (3).chi());
document.writeln( "<br>" );
document.writeln( (3+1).chi() );
document.writeln( "<br>" );
document.writeln( 3.2.chi() );
document.writeln( "<br>" );
document.writeln( 3.0.chi() );
// document.writeln( 3.chi() );
// SyntaxError: identifier starts immediately after numeric literal
</script>
</body>
</html>
运行结果如下:
0.9990000000000001
1.332
1.0656
参考 Javascript: The Good Parts,第33页
代码如下:
<html>
<body>
<script type="text/javascript">
// copied from page 33 of Javascript: The Good Parts
Function.prototype.method = function (name, func)
{
this.prototype[name] = func;
return this;
}
Number.method(‘chi‘, function() {
return this*0.333;
});
document.writeln( (3).chi());
document.writeln( "<br>" );
document.writeln( (3+1).chi() );
document.writeln( "<br>" );
document.writeln( 3.2.chi() );
document.writeln( "<br>" );
document.writeln( 3.0.chi() );
// document.writeln( 3.chi() );
// SyntaxError: identifier starts immediately after numeric literal
</script>
</body>
</html>
运行结果如下:
0.9990000000000001
1.332
1.0656
0.9990000000000001
努力学习,苦中作乐。
JavaScript语言实现类似这样的效果: 3.grams.flour
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。