其实很多场合中我们都会有这种需求,对文件后缀进行判断,这边给出的设计是最原始的。

 

 

getType:function(source){
     source.toLowerCase().substring(source.lastIndexOf('.')+1);
}

 

 这个设计的优势

 

  • 采用String对象本身的lastIndexOf,性能不错