COUNT
Syntax COUNT word 
COUNT list 
 
Explanation COUNT reports the number of elements in its input. If its input is a word, COUNT reports the number of characters. If the input is a list, COUNT reports the number of elements in the list.
 
Examples COUNT "ELEMENTARY 
Result: 10 
COUNT [ELEMENTARY] 
Result: 1 
COUNT [[MT. WASHINGTON] [MT. RAINIER] [MAUNA LOA]] 
Result: 3 

TopIndex