5 Ways to Make JavaScript More Functional
https://www.sitepoint.com/make-javascript-functional/
.
.
.
#javascript
๐18
Three js free courses
โฏ๏ธ
โฏ๏ธ
โฏ๏ธ
https://www.udemy.com/course/practices-for-blender-and-threejs/?referralCode=F0A5CB11CEDC0BE3B8E7
โฏ๏ธ
https://www.udemy.com/course/physics-practices-for-threejs-cannon-and-blender/
โฏ๏ธ
https://www.udemy.com/course/rigging-practices-for-blender-and-threejs/
โฏ๏ธ
https://t.me/WebsiteDesignLearningGroup
.
.
.
#threejs #javascript #webdevelopment
โฏ๏ธ
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
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
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
Phil Nash
JavaScript is getting array grouping methods
Grouping items in an array is one of those things you've probably done a load of times. Each time you would have written a grouping function by hand or...
๐14โค1๐ฅฐ1
โ
Javascript Reduce method Example.
โซ๏ธ Finding the longest word in a given string.
#JavaScript
(๐) โข @WebsiteDesignLearningGroup
โซ๏ธ 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
โซ๏ธ 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
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
๐ 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.
#JavaScript
(๐) โข @WebsiteDesignLearningGroup
โซ๏ธ 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
๐ฅ๐ฅJOIN OUR DISCUSSION GROUP๐ฅ๐ฅ https://t.me/website_DesignLearning_Group
Telegram
Web development ๐discussion
web development discussion group ๐ฅ๐ฅ๐ฅ
Subscribe to get free learning resources
๐๐๐
http://t.me/WebsiteDesignLearningGroup
Admin @sreetamo @Tranjar
#html #css #javascript #bootstrap #php #nodejs #webdevelopment
Subscribe to get free learning resources
๐๐๐
http://t.me/WebsiteDesignLearningGroup
Admin @sreetamo @Tranjar
#html #css #javascript #bootstrap #php #nodejs #webdevelopment
โค3๐ฅฐ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
โซ๏ธ 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
This media is not supported in your browser
VIEW IN TELEGRAM
The rise and rise of #JavaScript
Forwarded from Web design & ๐ development
โ
Javascript Reduce method Example.
โซ๏ธ Finding the longest word in a given string.
#JavaScript
(๐) โข @WebsiteDesignLearningGroup
โซ๏ธ 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