Skip to content

Instantly share code, notes, and snippets.

@Tholakele-jiyana
Tholakele-jiyana / PracticalChallenge.js
Created September 25, 2025 10:21
Practical Challenge Word Game
let wordGame = [
["Melsoft Academy Word Game: Fill in the missing letters"],
[" "," "," "," "," "],
[" ","E"," ","L","O"],
[" "," "," "," "," "],
[" ","C"," "," ","L"],
["I"," "," "," "," "]
];
wordGame[2][2]=("L")
wordGame[2][0]=("H")
@Tholakele-jiyana
Tholakele-jiyana / MiniChallenge.js
Last active September 25, 2025 10:24
Mini Challenge: The secret shopping list
//Empty Array
let secretList=[];
console.log(secretList);
//Add Items
secretList=["Disguise kit", "Grappling hook", "Flashlight", "Map", "Snacks"]
console.log(secretList);
//Remove item
delete secretList[1]
@Tholakele-jiyana
Tholakele-jiyana / wordGame.js
Created January 23, 2025 21:24
Word Game Challenge: Crack the code
let wordGame = [
["Melsoft Academy Word Game: Fill in the missing letters"],
[" "," "," "," "," "],
[" ","E"," ","L","O"],
[" "," "," "," "," "],
[" ","C"," "," ","L"],
["I"," "," "," "," "]
];
console.log(wordGame);
@Tholakele-jiyana
Tholakele-jiyana / Arrays.js
Last active January 23, 2025 20:34
Array Mini Challenge: The secret shopping list
// 1. Create an empty array
let secreteList = []
// 2. Gather Supplies
secretList = ["Disguise kit", "Grappling book", "Flashlight", "Map", "Snacks"];
console.log(secretList);
// 3. Remove Grappling book
delete(secretList [1]);
console.log(secretList);