1
0
mirror of synced 2025-12-10 16:38:16 +08:00

chore: update luna console and luna object viewer

This commit is contained in:
redhoodsu
2022-12-13 00:02:45 +08:00
parent d7ecb9f91d
commit 6175dfd430
4 changed files with 24 additions and 8 deletions

View File

@@ -126,6 +126,11 @@
addClickEvent('log', function () {
console.clear()
console.log('log')
console.log('number:', 5)
console.log('boolean:', true, false)
console.log('null:', null)
console.log('undefined:', undefined)
console.log('regexp:', /test/gi)
for (var i = 0; i < 10; i++) {
console.log('repeat log')
}