Coding Master
11K subscribers
288 photos
13 videos
219 files
3.02K 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
Animated Parallax Card Effect.zip
1.4 KB
Source Code
Write a JavaScript program to check if two numbers are in range 40..60 or in the range 70..100 inclusive.

function numbers_ranges(x, y) {
if ((x >= 40 && x <= 60 && y >= 40 && y <= 60)
||
(x >= 70 && x <= 100 && y >= 70 && y <= 100))
{
return true;
}
else
{
return false;
}
}

console.log(numbers_ranges(44, 56));
console.log(numbers_ranges(70, 95));
console.log(numbers_ranges(50, 89));
Fillping Card Hover Effect.zip
204.8 KB
Source Code
Top Telegram Channels Useful For Developers πŸ‘‡πŸ‘‡
Welcome to the Amazing PHP Channel! Here you can find a lot of interesting articles/news about PHP, frameworks, tools and development. Contact with author: @askarfz. Have questions? @amzphp
https://t.me/phpme
Understanding Generators in JavaScript

Generator functions can be paused and resumed and yield multiple values over time and were introduced in ES6/ES2015. - http://amp.gs/FT6i

#javascript
Best free resources to learn React in 2020πŸ‘‡πŸ‘‡