- 2

What is wrong with this code?

Let cutablekey=object.keys.(cutable);

10th Sep 2019, 9:15 AM
Abuki Mubez
Abuki Mubez - avatar
2 Answers
+ 2
Delete the dot, "cutable" is a paramater to the keys() function, the correct code is: let cutablekey = object.keys(cutable);
10th Sep 2019, 9:40 AM
KfirWe
KfirWe - avatar