Skip to content

Commit

Permalink
Lint code snippet
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmadshahwan committed Nov 20, 2024
1 parent abd7c1e commit 5009364
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions public/slides/js-intro/js-typing.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ x = 'one';
console.log(typeof x); // string
x = [1, 2, 3];
console.log(typeof x); // object
x = {a: 1, b: 2, c: 3};
x = { a: 1, b: 2, c: 3 };
console.log(typeof x); // object
```



0 comments on commit 5009364

Please sign in to comment.