admin管理员组文章数量:1345884
What I'm trying to do is make a variable which I can use across different functions in the class. But for some reason whenever I write let variable
above the constructor I get 'Unexpected token. A constructor, method, accessor, or property was expected.
Tried it with a var and I pretty much get the same result
class ClassName {
let variable;
constructor() {
variable = 1;
}
function() {
console.log(variable + 1);
}
}
What I'm trying to do is make a variable which I can use across different functions in the class. But for some reason whenever I write let variable
above the constructor I get 'Unexpected token. A constructor, method, accessor, or property was expected.
Tried it with a var and I pretty much get the same result
class ClassName {
let variable;
constructor() {
variable = 1;
}
function() {
console.log(variable + 1);
}
}
Share
Improve this question
asked Dec 18, 2016 at 19:34
a.aneva.anev
1352 gold badges4 silver badges11 bronze badges
1
- 1 See Classes on MDN. – Michał Perłakowski Commented Dec 18, 2016 at 19:38
1 Answer
Reset to default 9You should access the variable as a property of this
:
class ClassName {
constructor() {
this.variable = 1;
}
someOtherFunction() {
console.log(this.variable + 1); // 2
}
}
new ClassName().someOtherFunction();
本文标签: javascriptMaking a es6 variable global in a classStack Overflow
版权声明:本文标题:javascript - Making a es6 variable global in a class - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743801216a2541349.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论