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

LibJS: Replace the global print() function with console.log() :^)

This commit is contained in:
Andreas Kling 2020-03-16 14:58:20 +01:00
parent 19452230cd
commit 086f68e878
10 changed files with 109 additions and 25 deletions

View file

@ -1,2 +1,2 @@
var x = "foobar";
print(x.hasOwnProperty("length"));
console.log(x.hasOwnProperty("length"));