From 1b286aff47e635683e67e3f57f46fb45b85540d9 Mon Sep 17 00:00:00 2001 From: DarkWiiPlayer Date: Wed, 20 Sep 2023 13:32:32 +0200 Subject: [PATCH] Reword intro of state.js page --- page/state.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/page/state.html b/page/state.html index 086bb27..1d34b80 100644 --- a/page/state.html +++ b/page/state.html @@ -15,7 +15,9 @@

Description

- State objects emit an event whenever a property gets written to on their associated Proxy. + State objects are an event-oriented way of managing application state and reacting to changes. + It makes use of built-in features such as Proxy and EventTarget + to save code and give users less to remember.