How to write into the browser console with JavaScript

1 Answer

0 votes
<script>

// Activate debugging in your browser with F12, 
//  and select "Console" in the debugger menu.

console.log("abc");
console.log(7 * 2);

/*
run:

abc
14 

*/
</script>

 



answered Aug 29, 2016 by avibootz

Related questions

...