Skip to content

Instantly share code, notes, and snippets.

@mastastealth
Forked from amereservant/biblebooks.php
Last active March 29, 2024 20:34
Show Gist options
  • Save mastastealth/cd5e12f6c0960408a3ac to your computer and use it in GitHub Desktop.
Save mastastealth/cd5e12f6c0960408a3ac to your computer and use it in GitHub Desktop.
Simple JS array of the books of the Bible
var books = [
'Genesis',
'Exodus',
'Leviticus',
'Numbers',
'Deuteronomy',
'Joshua',
'Judges',
'Ruth',
'1 Samuel',
'2 Samuel',
'1 Kings',
'2 Kings',
'1 Chronicles',
'2 Chronicles',
'Ezra',
'Nehemiah',
'Esther',
'Job',
'Psalm',
'Proverbs',
'Ecclesiastes',
'Song of Solomon',
'Isaiah',
'Jeremiah',
'Lamentations',
'Ezekiel',
'Daniel',
'Hosea',
'Joel',
'Amos',
'Obadiah',
'Jonah',
'Micah',
'Nahum',
'Habakkuk',
'Zephaniah',
'Haggai',
'Zechariah',
'Malachi',
'Matthew',
'Mark',
'Luke',
'John',
'Acts',
'Romans',
'1 Corinthians',
'2 Corinthians',
'Galatians',
'Ephesians',
'Philippians',
'Colossians',
'1 Thessalonians',
'2 Thessalonians',
'1 Timothy',
'2 Timothy',
'Titus',
'Philemon',
'Hebrews',
'James',
'1 Peter',
'2 Peter',
'1 John',
'2 John',
'3 John',
'Jude',
'Revelation'
];
// OR
var books = [
'Genesis', 'Exodus', 'Leviticus', 'Numbers',
'Deuteronomy', 'Joshua', 'Judges', 'Ruth',
'1 Samuel', '2 Samuel', '1 Kings', '2 Kings',
'1 Chronicles', '2 Chronicles', 'Ezra', 'Nehemiah',
'Esther', 'Job', 'Psalm', 'Proverbs',
'Ecclesiastes', 'Song of Solomon', 'Isaiah', 'Jeremiah',
'Lamentations', 'Ezekiel', 'Daniel', 'Hosea',
'Joel', 'Amos', 'Obadiah', 'Jonah',
'Micah', 'Nahum', 'Habakkuk', 'Zephaniah',
'Haggai', 'Zechariah', 'Malachi', 'Matthew',
'Mark', 'Luke', 'John', 'Acts',
'Romans', '1 Corinthians', '2 Corinthians', 'Galatians',
'Ephesians', 'Philippians', 'Colossians', '1 Thessalonians',
'2 Thessalonians', '1 Timothy', '2 Timothy', 'Titus',
'Philemon', 'Hebrews', 'James', '1 Peter',
'2 Peter', '1 John', '2 John', '3 John',
'Jude', 'Revelation'
];
@rsi-whs
Copy link

rsi-whs commented Dec 4, 2019

thanks!

@mightmay
Copy link

C# sharp array

string[] BookNameEnglish = new string[66]
                { "Genesis",
"Exodus",
"Leviticus",
"Numbers",
"Deuteronomy",
"Joshua",
"Judges",
"Ruth",
"1Samuel",
"2Samuel",
"1Kings",
"2Kings",
"1Chronicles",
"2Chronicles",
"Ezra",
"Nehemiah",
"Esther",
"Job",
"Psalm",
"Proverbs",
"Ecclesiastes",
"SongofSolomon",
"Isaiah",
"Jeremiah",
"Lamentations",
"Ezekiel",
"Daniel",
"Hosea",
"Joel",
"Amos",
"Obadiah",
"Jonah",
"Micah",
"Nahum",
"Habakkuk",
"Zephaniah",
"Haggai",
"Zechariah",
"Malachi",
"Matthew",
"Mark",
"Luke",
"John",
"Acts",
"Romans",
"1Corinthians",
"2Corinthians",
"Galatians",
"Ephesians",
"Philippians",
"Colossians",
"1Thessalonians",
"2Thessalonians",
"1Timothy",
"2Timothy",
"Titus",
"Philemon",
"Hebrews",
"James",
"1Peter",
"2Peter",
"1John",
"2John",
"3John",
"Jude",
"Revelation"};

@rotimi-best
Copy link

Thank you. Finally found this.

@dcdunkan
Copy link

Thankyou!

@lukeabram
Copy link

Thank you 10,000x

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment