破折号
Lo-Dash、Underscore.string + 单个强大的_中的其他一些有用功能。
“其他”功能
.type( [variable] )
以字符串形式返回变量的类型。
_ . type ( [ ] ) ; // => array
_ . type ( new Array ( ) ) ; // => array
_ . type ( { } ) ; // => object
_ . type ( new Object ( ) ) ; // => object
.uncapitalize( [str] )
取消大写字符串。
_ . uncapitalize ( "I AM MAD!" ) ; // "i AM MAD!"
_ . uncapitalize ( "you're my hero!" ) ; // "you're my hero!"
.replaceAl
1