I am very new with framer.js and
I am just following a book called http://coffeescript-for-framerjs.com/#buy where it's written
fruits[1].toUpperCase()
It was working properly
fruits.toUpperCase()
Here in book it's fruit not fruits i tried both but getting error
Now i got it that toUpperCase() is a string method so it will not work with Array. but what exactly book is saying here then.