Maison  >  Article  >  interface Web  >  js 字符连接对象

js 字符连接对象

巴扎黑
巴扎黑original
2016-11-25 13:36:051085parcourir

function StringBuffer(){ 
     this.str = []; 


StringBuffer.prototype = { 
    append:function(str){ 
        this.str.push(str); 
        return this; 
   }, 
   toString:function(){ 
        return  this.str.join(''); 
   }, 
   clear:function(){ 
       this.str.length = 0; 
       return this; 
  } 
}


Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn