Does it make sense that I can't access `console` f...
# webassembly
e
Does it make sense that I can't access
console
from a wasmJs source set?
r
Just declare yourself an external class and variable
b
please file an issue
I’m wondering why you don’t use
println
instead?
r
println
is not very useful with js/wasmjs because it prints only
toString
value, which in most cases is just
[object Object]
. When using
console.log()
you can see the internals of objects/arrays etc.
👆 2