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

View File

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