From 5603efa441f879aeb9b15e669cbf3c257798eaf8 Mon Sep 17 00:00:00 2001
From: brock-statsig <146870406+brock-statsig@users.noreply.github.com>
Date: Mon, 23 Dec 2024 16:11:14 -0800
Subject: [PATCH] code snippet (#2434)
---
docs/client/concepts/parameter-stores.mdx | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/docs/client/concepts/parameter-stores.mdx b/docs/client/concepts/parameter-stores.mdx
index 3fe92f6aa..700a2f804 100644
--- a/docs/client/concepts/parameter-stores.mdx
+++ b/docs/client/concepts/parameter-stores.mdx
@@ -23,6 +23,12 @@ When the time comes to run an experiment, we can point these variables directly
+Now, you've begun an experiment on your tagline, without ever making a code change. You continue to access the parameter in-code like this:
+
+```javascript
+const homepageStore = StatsigClient.getParameterStore("www_homepage");
+const tagline = homepageStore.get("tagline", );
+```
## **How to Use Parameter Stores**