#noob error

7 messages · Page 1 of 1 (latest)

tropic flare
#

im getting this error trying to make a simple password generator function any help would be appr :))))

sonic ginkgo
#

square brackets instead of open

pseudo terrace
#

I think you mean to have upper.toLowerCase()

opal warren
#

const lower = upper.toLowerCase()

#

Missing the invocation of the function

forest siren
#

as previously said, you forgot to call the toLowerCase method on const lower = upper.toLowerCase; should be const lower = upper.toLowerCase()

#

also, this code could be improved quite a bit