1. sort是排序根据字符的ASCIll码排序的,不分字符串或其它元素(仅适用于数组)
2. split是将字符串转为数组形式
3. join是将数组转为字符串形式
4. indexOf找到元素后返回下标位置,否则返回-1
1 var answer_a = 'AB';
2 var answer_b = 'BACDSGDGGD';
3
4 /*
5 * 字符串进行比较是否相同.
6 * 答案集:AD
7 * 答案A:AD => 返回下标(已找到)
8 * 答案B:DA => 返回-1(未找到)
9 */
10 function atob(str) {
11 var temp_a = str;
12 var temp_b = temp_a.split("");
13 temp_b.sort();
14 var result = temp_b.join("");
15 return result;
16 }
17
18 console.log(atob(answer_b).indexOf(answer_a), answer_a, atob(answer_b));
19 // 0 "AB" "ABCDDDGGGS"