_.toUpper
Lodash only
Uppercases a given string.
- // Lodash
- var result = _.toUpper('foobar')
- console.log(result)
- // output: 'FOOBAR'
- // Native
- var result = 'foobar'.toUpperCase()
- console.log(result)
- // output: 'FOOBAR'
Browser Support for String.prototype.toUpperCase()
✔ | ✔ | 1.0 ✔ | ✔ | ✔ | ✔ |
当前内容版权归 you-dont-need 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 you-dont-need .