用js获取字符串中最后一个字符的几种方法

2024年10月28日 09:59
有1个网友回答
网友(1):

string.split("").pop()
string.substring(string.length-1,string.length)
太多了,排列组合没完没了了,就举两个例子了