This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<title>Console Demo</title> | |
<script> | |
// Method that adds log entries to your custom console | |
const addEntryToMyConsole = (type, content) => { | |
if (typeof content === 'undefined') { | |
content = '[missing content]'; | |
} else if (typeof content !== 'string') { |