Sobes.tech
Junior — Senior

Detect and fix an error in a JavaScript object method

livecode

Task condition

Find and fix the problem in the following JavaScript code snippet:

 const data = {
    number: 42,
    speak: function () {
        setTimeout(function () {
            console.log(this.number);
        }, 1000);
    }
}

data.speak();
Detect and fix an error in a JavaScript object method… - sobes.tech