{ “cells”: [ { “cell_type”: “code”, “execution_count”: null, “metadata”: {}, “outputs”: [], “source”: [ “%%js // required to allow cell to be JavaScript enabled\n”, “\n”, “console.log("JavaScript/Jupyter Output Intro");\n”, “\n”, “// Browser Console output; debugging or tracing\n”, “console.log("Hello, World!");\n”, “\n”, “// Set element in HTML above using DOM (Document Object Model)\n”, “document.getElementById("output").textContent = "Hello, World!";\n”, “\n”, “// Jupyter built in magic element for testing and convenience of development\n”, “element.textContent = "Hello, World!"; // element is an output option as part of %%js magic\n”, “\n”, “//alert("Hello, World!");” ] } ], “metadata”: { “language_info”: { “name”: “python” }, “orig_nbformat”: 4 }, “nbformat”: 4, “nbformat_minor”: 2 }