Skip to content

Instantly share code, notes, and snippets.

@Ursaravind
Ursaravind / js_sync&async_technical_paper.md
Created September 27, 2025 11:11
js_sync&async_technical_paper.md

JavaScript Basics

Data Types in JavaScript

JavaScript has primitives: undefined, null, boolean, number, bigint, string, symbol. Non-primitives: object.

Example:

let num = 42; // number
let obj = { key: 'value' }; // object
@Ursaravind
Ursaravind / drill1.sh
Created August 12, 2025 13:14
CLI Drill 1 — Shell Script
#!/bin/bash
# drill one submission
# creating hello directory using mkdir command
mkdir hello
cd hello
# inside the hello directory create five/six/seven nested directories
mkdir -p five/six/seven