Skip to content

Instantly share code, notes, and snippets.

@julianburr
Last active January 7, 2026 23:50
Show Gist options
  • Select an option

  • Save julianburr/6db877e0b961b02edc68665e823d1105 to your computer and use it in GitHub Desktop.

Select an option

Save julianburr/6db877e0b961b02edc68665e823d1105 to your computer and use it in GitHub Desktop.
It's Time To Talk About Signals - Reactive Variables Pseudo Code - 01
let counter = 1;
let isEven = counter % 2 === 0;
let parity = isEven ? "even" : "odd";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment