var str = "has";
var temp = str.split("(");
这个时候 虽然 str 中没有 "(" 标识符 但是仍然会被转化成 一个 数组
即 temp = [has]
temp.push(123)
[has,123];