Skip to content

Using console.log in the Code node#

You can use console.log() in the Code node to help when writing and debugging your code.

For help opening your browser console, refer to this guide by Balsamiq.

For technical information on console.log(), refer to the MDN developer docs.

For example, copy the following code into a Code node, then open your console and run the node:

1
2
let a = "apple";
console.log(a);