Course
What is JavaScript?-- operator-= operator++ operator+= operatorAccessing and setting contentArray concat() methodArray indexOf()Array lengthArray pop()Array shiftArraysBooleansBracesCallback functionCalling the functionClassClosureCode blockCommentConditionsConsoleConstructorCreating a p elementData typesDate getTime()DestructuringElseElse ifEnumEquals operatorError HandlingES6Event loopEventsExtendFetch APIFilterFor loopforEach()FunctionFunction bind()Function nameGreater thanHead elementHoistingIf statementincludes()Infinity propertyIteratorJSONLess thanLocal storageMapMethodsModuleNumbersObject.keys()Overriding methodsParametersPromisesRandomReduceRegular expressionsRemoving an elementReplaceScopeSession storageSortSpliceStringString concat()String indexOf()SubstringSwitch statementTemplate literalsTernary operatorTileType conversionWhile loop
JavaScript Program to Write to Console
Example: Using console.log()
// program to write to console
// passing number
console.log(8);
// passing string
console.log('hello');
// passing variable
const x = 'hello';
console.log(x);
// passing function
function sayName() {
return 'Hello John';
}
console.log(sayName());
// passing string and a variable
const name = 'John';
console.log('Hello ' + name);
// passing object
let obj = {
name: 'John',
age: 28
}
console.log(obj);
Output
8
hello
hello
Hello John
Hello John
{
age: 28,
name: "John"
}
The console.log() method is used to write to the console. You can pass values directly into the method or pass a variable to write to a console.