1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-24 21:35:06 +00:00

LibJS: Implement typeof operator

This commit is contained in:
Conrad Pankoff 2020-03-18 06:33:32 +11:00 committed by Andreas Kling
parent 0a71533aff
commit 46a897b59b
4 changed files with 27 additions and 1 deletions

View file

@ -0,0 +1 @@
console.log(typeof undefined, typeof true, typeof 'a', typeof 1, typeof {});