Hi everyone!!!
I have the next issue; my alexa's skill have a file localisation.js to manage the language, into it i have an array like this:
questions: [ 'question 1', 'question 2', 'question 3', 'question 4' ]
How i can do to get questions size (number of indexes) in index.js to asingation??
i tried
const quizSize = 'questions'.length
but i get the size of questions like string.
Thanks a lot for read and answer.