Question
Number of lines in CSV file?
I import a simple CSV file with a list of words from my project panel:
words = footage("words.csv");
I loop through this array by manually setting the number of lines. Every time I add a word to the list I have to adjust this number though. How can I retrieve the number of lines with an expression? Obviously, the expression
words.length
doesn't work.
