Created
September 2, 2025 13:35
-
-
Save LikeCarter/d3b50b4b952c677106b09fe34492331c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const preElement = document.querySelector('pre'); | |
| const jsonString = preElement.textContent; | |
| const data = JSON.parse(jsonString); | |
| const uniquePlanNames = [...new Set(Object.values(data).map((value) => value.plan_name))]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment