Answers for "react native A class member cannot have the 'const' keyword"

1

A class member cannot have the 'const' keyword.

class MyClass {
    readonly myReadOnlyProperty = 1;

    myMethod() {
        console.log(this.myReadOnlyProperty);
        this.myReadOnlyProperty = 5; // error, readonly
    }
}

new MyClass().myReadOnlyProperty = 5; // error, readonly
Posted by: Guest on May-12-2021

Code answers related to "react native A class member cannot have the 'const' keyword"

Code answers related to "Javascript"

Browse Popular Code Answers by Language