最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Making a es6 variable global in a class - Stack Overflow

programmeradmin1浏览0评论

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
Add a ment  | 

1 Answer 1

Reset to default 9

You 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();

发布评论

评论列表(0)

  1. 暂无评论