题解 | #文件扩展名#
文件扩展名
https://www.nowcoder.com/practice/01ca4c6aa14249c2911f89baba9dc023
文件扩展名
- 首先通过lastIndexOf获取最后一个"."符号的位置
- 然后通过slice截取index(包括)之后的字符串
const _getExFilename = (filename) => { let n = filename.length let index = filename.lastIndexOf('.') return index !== -1 ? filename.slice(index) : '' }