Skip to content

Instantly share code, notes, and snippets.

View CodeBoy722's full-sized avatar
:octocat:
It time for a dimention shift

Codeboy CodeBoy722

:octocat:
It time for a dimention shift
View GitHub Profile
@SackeyDavid
SackeyDavid / gist:d24315dd844d51b3e70af062fdcf5941
Created September 19, 2021 03:04
Turing Coding Challenge Practise Test - Problem 2
// console.log("Hello, World!");
var countElements = function(arr) {
var result = 0;
// output = 0;
// count elements
for (var i = 0; i < arr.length; i++) {
if(arr.includes(arr[i] + 1)) {
result+= 1
}
@ksafranski
ksafranski / Common-Currency.json
Last active April 23, 2025 09:47
Common Currency Codes in JSON
{
"USD": {
"symbol": "$",
"name": "US Dollar",
"symbol_native": "$",
"decimal_digits": 2,
"rounding": 0,
"code": "USD",
"name_plural": "US dollars"
},