A quick guide to cell phone vibration with JavaScript
https://blog.petefowler.dev/a-quick-guide-to-cell-phone-vibration-with-javascript
#javascript
https://blog.petefowler.dev/a-quick-guide-to-cell-phone-vibration-with-javascript
#javascript
๐14๐1
5 Ways to Make JavaScript More Functionalhttps://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.iss.one/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.jshttps://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.jshttps://www.udemy.com/course/rigging-practices-for-blender-and-threejs/
โฏ๏ธ
Join us on telegramhttps://t.iss.one/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