Skip to content

Instantly share code, notes, and snippets.

View MuhammadMahmoudAli's full-sized avatar
🎯
Focusing

Muhammad MuhammadMahmoudAli

🎯
Focusing
View GitHub Profile
@desinas
desinas / quizBuildTriangle.js
Last active March 18, 2023 17:19
Build a triangle Quiz (5-3) of Udacity FEWD
/*
* Programming Quiz: Build A Triangle (5-3)
*/
// creates a line of * for a given length
function makeLine(length) {
var line = "";
for (var j = 1; j <= length; j++) {
line += "* ";
}