A mutable reference wrapper that supports value updates and change notifications.
Can hold a direct value or reference another Ref, forming reference chains.
Example
constref = newRef(42) ref.onUpdate((old, newVal) =>console.log(`Changed from ${old} to ${newVal}`)) ref.update(100) // Logs: Changed from 42 to 100
A mutable reference wrapper that supports value updates and change notifications. Can hold a direct value or reference another Ref, forming reference chains.
Example