vimwiki/tech/Javascript.wiki

29 lines
582 B
Plaintext

= Javascript =
Javascript is probably the most popular language in existance. It is an
interpreted, typeless language
== Backend, frameworks, and more ==
See [[Node.js.wiki]] for the core runtime of backend js (node)
See [[../tech/express.js.wiki]]
See [[../tech/react.js.wiki]]
See [[../tech/vue.js.wiki]]
See [[jQuery]]
== Logging ==
To log several objects as a single command, run
{{{
console.log({foo, bar, baz});
}}}
To edit to appearance of the log, use printf esk statements
{{{
console.log('%c this text is orange', 'color: orange; font-weight: bold');
}}}