js 字符串,数组扩展

Posted Webwhl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 字符串,数组扩展相关的知识,希望对你有一定的参考价值。

			console.log(Array.prototype.sort)//ƒ substring() { [native code] }
			console.log(String.prototype.substring)
			//字符串扩展
			String.prototype.addstring = function(){
				return this+‘字符串扩展‘
			}
			console.log(‘ff‘.addstring())//ff字符串扩展
		

  

以上是关于js 字符串,数组扩展的主要内容,如果未能解决你的问题,请参考以下文章

js简洁代码片段

几个关于js数组方法reduce的经典片段

几个关于js数组方法reduce的经典片段

JS常用代码片段-127个常用罗列-值得收藏

js 字符串,数组扩展

原生JS-字符串扩展