Will apply a function on each element of the array described as a string
By default we will use as variable 'x'
In front of sequence of lowercase we will add 'Math.'. This allows to write
sin(x) + cos(x) and it will be replace internally by (x) => (Math.sin(x) + Math.cos(x))
Will apply a function on each element of the array described as a string By default we will use as variable 'x' In front of sequence of lowercase we will add 'Math.'. This allows to write
sin(x) + cos(x)
and it will be replace internally by (x) => (Math.sin(x) + Math.cos(x))