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

本文标签: javascriptMaking a es6 variable global in a classStack Overflow