fix(curriculum): add function call to code snippet so it outputs in console (#56458)

This commit is contained in:
Raghav Sharma 2024-10-02 23:26:41 +05:30 committed by GitHub
parent 285a49a10c
commit cbcd56503f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -46,6 +46,8 @@ function myFunction() {
let x = 20;
console.log(x);
}
myFunction();
```
## --answers--