For example, if i were to have a table like this
local exampletable = ["Apple","Apple","Banana"]
How would i get the amount of “Apple” in that table (which would obviosuly equal to 2), instead of running through everything in the table, and having “Banana” count aswell?
I know there are things like the # operator, but that would simply end up counting EVERYTHING- including the banana.