Advertisement
728x90
javascript
1function area({ length = 10, width = 20 }) {
2
3console.log(length * width);
4}
5
6area();Choose the correct output:
A
200B
ErrorC
undefinedD
0Advertisement
Responsive Ad
36of86
Advertisement
1function area({ length = 10, width = 20 }) {
2
3console.log(length * width);
4}
5
6area();Advertisement