This file contains hidden or 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
/* This script was auto generated on previewing the "Pretty Print"-ed response body of `json_formatter.min.js` file using the Chrome DevTools's Network tab whereas `json_formatter.min.js` file itself was created manually */ | |
window['pre']; | |
const version = "4.2.3"; | |
const isExpanded = true; | |
window['recurse'] = (obj,keyname='',isLast=false)=>{ | |
const expanded = isExpanded ? 'expanded' : '' | |
, c = isLast ? '' : ','; | |
let type = typeof obj | |
, dom = document.createDocumentFragment() | |
, inner = document.createDocumentFragment() |
This file contains hidden or 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
#! /bin/bash | |
# ECHO COMMAND | |
# echo Hello World! | |
# VARIABLES | |
# Uppercase by convention | |
# Letters, numbers, underscores | |
NAME="Bob" | |
# echo "My name is $NAME" |