Clear the console
Simple example of clearing the console.
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<script>
console.log("This is a plain text to clear");
console.clear();
</script>
</body>
</html>