[Solved] Can I perform a local storage key search on a numerical range?

The key value is a number in local storage. The number is stored as 157000/157003 and so on.

When retrieving a stored key
How do I search for numbers that are 157000 and smaller?

Convert a string to a list, loop through a list with a filter of values equal to or less than the specified value

1 Like

Thank you.