Kaptaan Jack to Programmer Humor@lemmy.ml • 2 years agoProgramming Languageslemmy.mlimagemessage-square173fedilinkarrow-up1780arrow-down164file-text
arrow-up1716arrow-down1imageProgramming Languageslemmy.mlKaptaan Jack to Programmer Humor@lemmy.ml • 2 years agomessage-square173fedilinkfile-text
minus-square@Feathercrown@lemmy.worldlinkfedilink2•2 years agoIn the browser you cannot access stdout, but you can use console.log to write to the dev console which is basically the same thing. In Node, you can use process.stdout. Both are available from the top-level globalThis objects that are part of each platform’s respective default library.
minus-squaremonklinkfedilink1•2 years agoAnd in GJS? All other runtimes? In, say, C, such basic stuff is right there, in the standard. Javascript isn’t even standardized, some ECMAScript is, so I don’t even know what we’re talking about.
In the browser you cannot access stdout, but you can use
console.log
to write to the dev console which is basically the same thing.In Node, you can use
process.stdout
.Both are available from the top-level
globalThis
objects that are part of each platform’s respective default library.And in GJS? All other runtimes?
In, say, C, such basic stuff is right there, in the standard.
Javascript isn’t even standardized, some ECMAScript is, so I don’t even know what we’re talking about.