Const
Readonly
The number of verses in each book of the Tanakh. Indexed by English transliterated name of book, and arrays are 1-based.
There are 51 chapters in Genesis, so NUM_VERSES['Genesis'].length === 51.
NUM_VERSES['Genesis'].length === 51
There are 26 verses in Genesis chapter 4, so NUM_VERSES['Genesis'][4] === 26.
NUM_VERSES['Genesis'][4] === 26
The number of verses in each book of the Tanakh. Indexed by English transliterated name of book, and arrays are 1-based.
There are 51 chapters in Genesis, so
NUM_VERSES['Genesis'].length === 51
.There are 26 verses in Genesis chapter 4, so
NUM_VERSES['Genesis'][4] === 26
.