Report this

What is the reason for this report?

Javascript Sort method

Posted on October 22, 2020

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:

var numbers ="1,6,3";
numbers.sort((a,b) => a - b);

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:

var numbers = [3,6,1];
numbers.sort((a,b) => a - b);

You should definitely not see any errors.

When you say:

VS Code does not recognize the method

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 call numbers.sort() and confirm that it is an Array

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.