Skip to content

Commit

Permalink
fix: fixing padding container
Browse files Browse the repository at this point in the history
  • Loading branch information
ElvinKyungu committed Feb 22, 2024
1 parent 1894e58 commit a4dd2f9
Show file tree
Hide file tree
Showing 6 changed files with 2,862 additions and 2,853 deletions.
1,124 changes: 562 additions & 562 deletions about.html

Large diffs are not rendered by default.

17 changes: 16 additions & 1 deletion assets/js/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,19 @@ for (let i = 0; i < whishlistBtns.length; i++) {
whishlistBtns[i].addEventListener("click", function () {
toggleElem(this);
});
}
}



function check(num){

if(num > 50){
const message = "Numéro > 50";
} else {
const message = "Numéro <= 50";
}

return message;
}

console.log(check(80));
Loading

0 comments on commit a4dd2f9

Please sign in to comment.