DEV Community

Discussion on: Everything new coming in ES2022

Collapse
 
manoharreddyporeddy profile image
Manohar Reddy Poreddy

hey, fix the below code, if it is wrong:

static isButtonToggle(obj){
    try {
        obj.#getValue;
        return true;
    } catch {
        // could be an error internal to the getter
        return false; 
    }
}
Enter fullscreen mode Exit fullscreen mode