WORKSPACE

JD

Jane Doe

Pro Plan

Code Block (js)

function fancyAlert(arg) {
if (arg) {
$.facebox({ div: '#foo' })
}
}
def hello_world():
print('hi')

Code Block with Title (js:fancyAlert.js)

fancyAlert.js
function fancyAlert(arg) {
if (arg) {
$.facebox({ div: '#foo' })
}
}

Show Line Numbers (js showLineNumbers)

1var twoSum = function (nums, target) {
2 var map = {}
3}

Show Line Numbers (js -4 showLineNumbers)

1import mongoose, { Schema } from 'mongoose'
2import { Auditor } from './Audit'
3
4const userSchema = new Schema({
5 email: {
6 type: String,
7 },
8 firstName: {
9 type: String,
10 },
11 lastName: {
12 type: String,
13 },
14})