Coding Master
11K subscribers
288 photos
13 videos
219 files
3.06K links
ADMIN : @Coding_Master ๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ผ

Hello guys, I Created This Telegram Channel To Share Useful Content On Web Development & Programming.

๐Ÿ‘‰ Free Ebooks
๐Ÿ‘‰ Free Tools & Resources Links
๐Ÿ‘‰ Free Projects Source Code

So Stay Tuned With Us & Keep Learning ๐Ÿ˜‰
Download Telegram
MySQL.pdf
1.9 MB
PHP.pdf
3.5 MB
[100%Off]Complete Modern JavaScript BootCamp from the beginning


Master JavaScript with Pure JavaScript๏ผJavaScript ES6+, OOP, AJAX

https://coursevania.com/complete-modern-javascript-bootcamp-from-the-beginning/
Want to level up your CSS Skills ๐Ÿ”ฅ๐Ÿ”ฅ
Coding Master pinned ยซWant to level up your CSS Skills ๐Ÿ”ฅ๐Ÿ”ฅยป
Write a JavaScript program to check if the last digit of the three given positive integers is same.  

function last_digit(x, y, z)
{
if ((x > 0) && y > 0 && z > 0)
{
return (x % 10 == y % 10 && y % 10 == z % 10 && x % 10 == z % 10);
}
else
return false;
}

console.log(last_digit(20, 30, 400));
console.log(last_digit(-20, 30, 400));
console.log(last_digit(20, -30, 400));
console.log(last_digit(20, 30, -400));
8 Awesome Projects You Can Build With Vanilla JavaScript ๐Ÿ‘‡๐Ÿ‘‡