Skip to content

Instantly share code, notes, and snippets.

@JollyRen
JollyRen / README.md
Last active May 9, 2023 00:33
Cumulative Review of Topics - 10/13

Cumulative Review of Topics - 10/13

Basic Data Types

  • undefined
  • NaN
  • Infinity (-Infinity is Infinity * -1)
  • globalThis = window (window.document...)
  • Boolean = true or false
  • Number = 0123456789
@JollyRen
JollyRen / README.md
Last active September 23, 2022 20:27
Common PostgreSQL (psql) commands
@JollyRen
JollyRen / README.md
Last active October 27, 2022 20:44
Balanced Brackets

Balanced Brackets

Learning Objective

  • Understand use cases for stacks

Interviewer Prompt

Write a function that determines whether an input string has balanced brackets.