Class example

Example of javascript class

by greatCar

JavaScript

class oneTime {

    constructor(identifier) {
        this.identifier = identifier;
    }
    
}

let x = new oneTime("myId")

alert (x.identifier)