I have 3 textarea elements on my page and there could be more than 3 in the future.
I want to get all the text from these textarea fields.
If I do $('textarea').val(); in chrome console, it only returns the first textarea's text.
How do I get the texts of all the elements in an array?