JavaScript console.clear() Method
You are Here:
JavaScript console.clear() Method
The console.clear()
method clears the console and leaves a message "Console was cleared".
Note: In Google Chrome, console.clear() has no effect if the user has selected "Preserve log upon navigation" in the settings.
Example
HTML Online Editor
<!DOCTYPE html>
<html>
<body>
<script>
console.log("One");
console.clear();
console.log("Two");
</script>
</body>
</html>
Syntax
console.clear()
Reminder
Hi Developers, we almost covered 97% of JavaScript Tutorials with examples for quick and easy learning.
We are working to cover every Single Concept in JavaScript.
Please do google search for:
Join Our Channel
Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.
This channel is primarily useful for Full Stack Web Developer.