From 4a00ac4f86265daa8a98972f920d2c06bc1d71ea Mon Sep 17 00:00:00 2001 From: Matthew Huntington Date: Tue, 18 Apr 2023 18:04:40 -0400 Subject: [PATCH] five beats --- five.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 five.js diff --git a/five.js b/five.js new file mode 100644 index 0000000..77bbc4b --- /dev/null +++ b/five.js @@ -0,0 +1,13 @@ +let id = 0; +for( let one = 0; one < 4; one++){ + for( let two = 0; two < 4; two++){ + for( let three = 0; three < 4; three++){ + for( let four = 0; four < 4; four++){ + for( let five = 0; five < 4; five++){ + console.log(`${id}: ${one} ${two} ${three} ${four} ${five}`); + id++; + } + } + } + } +}