Как печатать на консоли JavaScript
console.log("string")
Gorgeous Goose
console.log("string")
const varName = 'this variable';
console.log(varName);
console.log('string');
console.log('output')
The Console can be used to log information as part of the JavaScript development process, as well as allow you to interact with a web page by carrying out JavaScript expressions within the page's context. Essentially, the Console provides you with the ability to write, manage, and monitor JavaScript on demand