Web design & ๐Ÿ˜ƒ development
29.2K subscribers
495 photos
23 videos
65 files
757 links
Admin๐Ÿ‘ฎ @sreetamo @Tranjar

Get free resources for webdevelopment , html , CSS , JavaScript , reactjs , wordpress , Php , nodejs ...etc. Buy ads: https://telega.io/c/WebsiteDesignLearningGroup
๐Ÿ‘ฅGroup๐Ÿ‘ฅ @website_DesignLearning_Group
Download Telegram
Three js free courses

โ˜ฏ๏ธ The Three.JS Primer
https://www.udemy.com/course/the-threejs-primer/

โ˜ฏ๏ธThree.js - The Complete Beginner to Advanced Course
https://www.udemy.com/course/threejs-the-complete-course/

โ˜ฏ๏ธPractices for Blender and Three.js
https://www.udemy.com/course/practices-for-blender-and-threejs/?referralCode=F0A5CB11CEDC0BE3B8E7

โ˜ฏ๏ธPhysics practices for Three.js, Cannon and Blender.
https://www.udemy.com/course/physics-practices-for-threejs-cannon-and-blender/

โ˜ฏ๏ธRigging practices for Blender and Three.js
https://www.udemy.com/course/rigging-practices-for-blender-and-threejs/

โ˜ฏ๏ธ Join us on telegram
https://t.me/WebsiteDesignLearningGroup
.
.
.
#threejs #javascript #webdevelopment
๐Ÿ‘22โค6๐Ÿ‘6๐Ÿ”ฅ1๐Ÿฅฐ1
Creating an upvote system with React and socket io ๐Ÿฅณ ๐Ÿ”

https://dev.to/novu/creating-an-upvote-system-with-react-and-socketio-5aoj

#react #javascript
๐Ÿ”ฅ19๐Ÿ‘13
What will be the result? #javascript
๐Ÿ‘20๐Ÿค”3๐Ÿฅฐ1
5 Advanced JavaScript Tricks for Experienced Developers ๐Ÿš€

#javascript #js

http://bit.ly/42uHqo3
โค19๐Ÿ‘7๐Ÿ”ฅ3๐Ÿฅฐ2๐Ÿ˜2
โค23๐Ÿ‘7๐Ÿ”ฅ3
What will be the output?

(function() { var a = b = 5; })(); console.log(b); #javascript
Anonymous Quiz
51%
5
19%
Undefined
12%
ReferenceError
18%
SyntaxError
๐Ÿ‘26๐Ÿ”ฅ6๐Ÿ˜4
JavaScript's New Array Grouping Methods

A look at Object.groupBy and Map.groupBy. The proposal including these methods is currently at stage 3 at TC39, but initial support is creeping into dev builds of browsers. - https://philna.sh/blog/2023/09/14/javascript-array-grouping-methods/

#javascript
๐Ÿ‘14โค1๐Ÿฅฐ1
Javascript to keep your screen awake.
๐ŸŒŸJOIN DISCUSSION GROUP ๐ŸŒŸ
๐Ÿ‘10๐Ÿ‘3
โœ… Javascript Reduce method Example.

โ–ซ๏ธ Finding the longest word in a given string.

function longerWord(a, b) {
if (a.length > b.length) {
    return a;
  } else {
    return b;
}
}

const sentence = 'Hey there what are you doing this Wednesday night';

const longest = sentence.split(' ').reduce(longerWord);

console.log(longest);

// Wednesday

#JavaScript
(๐Ÿ“š) โ€ข @WebsiteDesignLearningGroup
๐Ÿ‘25โค2
โœ… Javascript Reduce method Example.

โ–ซ๏ธ Finding the longest word in a given string.

function longerWord(a, b) {
if (a.length > b.length) {
    return a;
  } else {
    return b;
}
}

const sentence = 'Hey there what are you doing this Wednesday night';

const longest = sentence.split(' ').reduce(longerWord);

console.log(longest);

// Wednesday

#JavaScript
(๐Ÿ“š) โ€ข @WebsiteDesignLearningGroup
๐Ÿ‘31โค4
โค14๐Ÿ‘4
function createCounter() {
let count = 0;
return function() {
count += 1;
console.log(count);
};
}

const counter1 = createCounter();
counter1();
counter1();

const counter2 = createCounter();
counter2();
counter1();

What will be the output?? #javascript
๐Ÿ‘7
JAVASCRIPT GAMEDEV FULL COURSE

๐Ÿ‘‰ https://youtu.be/GFO_txvwK_c
.
.
.
#javascript #gamedev #webdevelopment
๐Ÿ‘9
const obj = {};
let value = 0;

Object.defineProperty(obj, 'prop', {
get() {
return value;
},
set(newValue) {
value = newValue + 1;
},
configurable: true,
enumerable: true
});

obj.prop = 10;
console.log(obj.prop);

๐Ÿ”ดWhat will be the output??
#javascript #quiz
๐Ÿ‘11
โœ… Javascript Reduce method Example.

โ–ซ๏ธ Finding the longest word in a given string.

function longerWord(a, b) {
if (a.length > b.length) {
    return a;
  } else {
    return b;
}
}

const sentence = 'Hey there what are you doing this Wednesday night';

const longest = sentence.split(' ').reduce(longerWord);

console.log(longest);

// Wednesday

#JavaScript
(๐Ÿ“š) โ€ข @WebsiteDesignLearningGroup
๐Ÿ‘9โค2
โœ… Javascript Reduce method Example.

โ–ซ๏ธ Finding the longest word in a given string.

function longerWord(a, b) {
if (a.length > b.length) {
    return a;
  } else {
    return b;
}
}

const sentence = 'Hey there what are you doing this Wednesday night';

const longest = sentence.split(' ').reduce(longerWord);

console.log(longest);

// Wednesday

#JavaScript
(๐Ÿ“š) โ€ข @WebsiteDesignLearningGroup
๐Ÿ‘6๐Ÿ”ฅ1
โœ… Javascript Reduce method Example.

โ–ซ๏ธ Finding the longest word in a given string.

function longerWord(a, b) {
if (a.length > b.length) {
    return a;
  } else {
    return b;
}
}

const sentence = 'Hey there what are you doing this Wednesday night';

const longest = sentence.split(' ').reduce(longerWord);

console.log(longest);

// Wednesday

#JavaScript
(๐Ÿ“š) โ€ข @WebsiteDesignLearningGroup
โค10๐Ÿ‘2