js实现转化为驼峰命名

    var s1 = "get-element-by-id"

    // 转化为 getElementById
    var fn = function(s) {
        return s.replace(/-\w/g, function(x) {
            console.log(x)
            return x.slice(1).toUpperCase();
        })
    }

    console.log(fn(s1)) // getElementById

   转载规则


《js实现转化为驼峰命名》 朝飞 采用 知识共享署名 4.0 国际许可协议 进行许可。
  目录