javascript 下常用的字符串操作

charAt()返回在指定位置的字符。 12var str = "abac_dfra_wa";console.log(str.charAt(3)); //输出 c charCodeAt()返回在指定的位置的字符的 Unicode 编码。 12var str = "abac_dfr

—— Minary 于2014-10-15默默地以 , 賣萌

Codewars# Base64 Encodeing

Description:题目链接 Extend the String object to create a function that converts the value of the String to and from Base64 using the ASCII char

—— Minary 于2014-10-14默默地以 , , 賣萌

123