Answers for "print without using console log"

-1

change console log to print javascript

function print(value) {
    console.log(value)
}

print("Hello")
Posted by: Guest on May-01-2021
0

console.log() Print a Sentence

// program to print a sentence

// passing string
console.log("I love JS");
Posted by: Guest on May-20-2022

Code answers related to "print without using console log"

Code answers related to "Javascript"

Browse Popular Code Answers by Language