Node.js从零开发Web Server博客项目 前端晋升全栈工程师必备

const 课程地址 = " http://icourse8.com/nojswsbk.html ";

章节信息

第1章 课程介绍    

第2章 nodejs 介绍    

第3章 项目介绍    

第4章 开发博客项目之接口    

第5章 开发博客项目之数据存储    

第6章 博客项目之登录    

第7章 博客项目之日志    

第8章 博客项目之安全    

第9章 使用 express 重构博客项目    

第10章 使用 Koa2 重构博客项目    

第11章 上线与配置    

第12章 课程总结  

var countAndSay = function(n) {
    return createStr(1, '1', n)
	function createStr(index, str, n) {        if(index == n)
            return str
        index++        let newChar = ''        let k = 1
        for(let j = 0; j < str.length; j++) {            let char = str.charAt(j)
            if(char == str.charAt(j+1) && j != str.length - 1) {
                   k++
            }else {
                newChar = newChar + k + str.charAt(j)
                k=1
            }
        }
        return createStr(index, newChar, n)
    }  
}


来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/69927545/viewspace-2648052/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/69927545/viewspace-2648052/

你可能感兴趣的:(Node.js从零开发Web Server博客项目 前端晋升全栈工程师必备)