JavaScript 小白问题记录

2021/8/13 17:06:01

本文主要是介绍JavaScript 小白问题记录,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

问题显示:

syntaxError:Unexpected token 'export'

 

原因:只要有写export的js文件 要使用 都得是用另外一个js去import才能用,export一般是暴露出来作为全局公共方法去给所有的文件调用

或者是直接new 一个对象 用对象去调方法看输出

 

 

输出指定字符串中的2个字符

class Commonmethods{

    randomString(){
        const str = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
        var result = '';
        for (var i = 2; i > 0; --i) 
          result += str[Math.floor(Math.random() * str.length)];
        return result
    }
}

//export default new Commonmethods()
var a = new Commonmethods()
console.log(a.randomString())

运行结果

PS E:\Project\NetDragon\WebdriverDemo\Login\tests\utils> node .\commonmethods.js
if

 



这篇关于JavaScript 小白问题记录的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程