Answers for "consol log js variable"

6

how to use js console log

console.log('string');
Posted by: Guest on February-21-2020
0

how to console.log variable in js

<script>
var a = 2;
console.log("The value of a is " + a);
</script>
Posted by: Guest on December-03-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language