I'm making a little web-app in which I used AHK and javascript. I make AHK a group of images paths to the .js file something like this
var importedFiles = [
"file:///F:/image1.jpg",
"file:///F:/image10.jpg",
"file:///F:/image11.jpg",
"file:///F:/image2.jpg",
]
and these images should be viewed in the browser the problem is that the sorting method of the two languages is not like the windows sorting.
What I want is javascript sort the file in the variable so that they are like they are viewed in windows like this
var importedFiles = [
"file:///F:/image1.jpg",
"file:///F:/image2.jpg",
"file:///F:/image10.jpg",
"file:///F:/image11.jpg",
]
BTW : I've searched for the functions posted before but it only works with number only and strings containing number like this case