扩展String方法示例
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了扩展String方法示例相关的知识,希望对你有一定的参考价值。
Simple extension of the string method using string.prototype.
function fmtHeading(level) { stringtext = this.toString(); starttag = "<h" + level + ">"; endtag = "</h" + level + ">"; return starttag + stringtext + endtag; } String.prototype.heading = fmtHeading; document.write("This is a heading!".heading(2));
以上是关于扩展String方法示例的主要内容,如果未能解决你的问题,请参考以下文章
VS Code配置snippets代码片段快速生成html模板,提高前端编写效率
GroovyGroovy 扩展方法 ( 扩展静态方法示例 | 扩展实例方法示例 | 扩展实例方法与扩展静态方法代码相同 )