I found this very informative post on the subject of the Javascript SORT method. I found, however, that VS Code does not recognize the method.
This is the error message I got:
numbers.sort((a,b) => a - b); ^
TypeError: numbers.sort is not a function
Has anyone else run into this?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
That error looks like the type that you get when your
numbers
variable is not actually typed as an Array.For example, if you have some code where the numbers variable was an object or an integer or a string:
You will get
Uncaught TypeError: numbers.sort is not a function
because there is no sort function for strings.But if you check this exact snippet of code:
You should definitely not see any errors.
When you say:
This makes me think you are seeing IDE debugging warnings which could also be due to other problems with the your VS Code and extensions config.
But my first recommendation on debugging would be to check the TYPE of the
numbers
variable just before you callnumbers.sort()
and confirm that it is an Array