码迷,mamicode.com
首页 > 编程语言 > 详细

freecodecamp 基础算法题笔记

时间:2017-05-12 16:05:14      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:基础算法   str   function   ring   string   方法   顺序   转化   amp   

  • 字符串转化成数组
  • reverse方法翻转数组顺序
  • 数组转化成字符串。

function reverseString(str) {
a= str.split("");
b = a.reverse();
c = b.join("");
return c;
}

reverseString("hello");         // olleh

 

 

 

    

 

freecodecamp 基础算法题笔记

标签:基础算法   str   function   ring   string   方法   顺序   转化   amp   

原文地址:http://www.cnblogs.com/sharyn/p/6845844.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!