DEV Community

Discussion on: Implementing Reactivity from scratch

Collapse
 
merichard123 profile image
Richard • Edited

This is really well written! Thank you for the explanation!!

Just checking:

set name (val) {
        this.name = name;
        // TODO notify
 }

Should this have been this.name = val taking the value from the setter param?

Collapse
 
siddharthshyniben profile image
Siddharth

Welcome 😁