sort strings

// sort strings
strings.sort((a, b) => a.localeCompare(b))

Last updated