Skip to content

Instantly share code, notes, and snippets.

View hamirmahal's full-sized avatar
🖥️
Software engineering

Hamir Mahal hamirmahal

🖥️
Software engineering
View GitHub Profile
@hamirmahal
hamirmahal / dropdown.md
Created July 3, 2023 20:14 — forked from citrusui/dropdown.md
"Dropdowns" in Markdown
How do I dropdown?
This is how you dropdown.

<details>
<summary>How do I dropdown?</summary>
<br>
This is how you dropdown.
from machine import Pin, PWM
from time import sleep
ini_freq = 50
ini_duty = 5500
LE_PIN = 11
LS_PIN = 10
RS_PIN = 20
RE_PIN = 21
@hamirmahal
hamirmahal / spreadTest.js
Last active March 26, 2022 18:34
Spread syntax, ..., test
const a = [ 1, 2, 3 ]
const b = [ 4, 5, 6 ];
const c = [ ...a, ...b ];
b.push(7);
console.log(a, b, c);
// > Array [1, 2, 3] Array [4, 5, 6, 7] Array [1, 2, 3, 4, 5, 6]