0
I have a variable, which brings me all the data from the database.
There is how, in javascript, I make a filter on it still, like it brings me 10 tuples and by the filter only one.
Before anyone tells you to do this at the bank, I’d like to know if you can do this in javascript, just for learning.
Edit:
As it was not clear, I will clarify.
There is how to filter a recordset with javascript?
Sérgio answered me by array and filter.
The question was this. Is there any way to filter a recordset using pure javascript? Classic Asp Recordset.
I didn’t get it right, but if you have a variable with database data, you can easily make comparisons using
var.nome_coluna
:if (pessoa.cpf.length != 11)
, for example.– Eduardo Silva