A cherry picked list of the most usefull methods and functions available for you, in JS
slice, split, replace, toUpperCase, toLowerCase, trim, trimRight, trimLeft, padStart, padEnd
includes, startsWidth, endsWith, indexOf, lastIndexOf, charCodeAt
min, max, abs, sign, round, floor, ceil, trunc, random*
Array.from, Array.isArray, fill*
find, findIndex, includes, indexOf, lastIndexOf
concat, join, slice, pop*, push*, shift*, unshift*, splice*
forEach, filter, some, every, map, reduce, reduceRight
(*) methods in italics are NOT pure (using them with the same arguments won't return the same result).
They must be used with caution as it is harder to predict their results