This media is not supported in your browser
VIEW IN TELEGRAM
Sam Altman says the future AI models wonโt just be smarter โ theyโll be simpler, more reliable, and easier to trust
Instead of choosing different models, users will have one that automatically does the right thing.
"It just works" becomes the default
Instead of choosing different models, users will have one that automatically does the right thing.
"It just works" becomes the default
โค2
Forwarded from Web design & ๐ development
๐ฐ JavaScript Tip ๐ก: Add properties to an object based on a condition.
๐3โค1
Forwarded from Web design & ๐ development
Chrome's Face Detection API!!
Used in real-time face detection for image processing, security, photo apps, or adding effects on faces in media.
โค8๐ฅ4๐1
Forwarded from Web design & ๐ development
๐ฝLooking for Youtube channels but don't know which ones to follow? We got you covered ๐ฝ
๐ Here's a list of Youtube channels we recommend to learners :-
๐ English Only
๐ Traversy Media: https://www.youtube.com/@TraversyMedia
๐ Net Ninja: https://www.youtube.com/@NetNinja
๐ Fireship: https://www.youtube.com/@Fireship
๐ Web Dev Simplified: https://www.youtube.com/@WebDevSimplified
๐ Anson The Developer: https://www.youtube.com/@ansonthedev
๐ Programming With Mosh: https://www.youtube.com/@programmingwithmosh
๐ Telusko: https://www.youtube.com/@Telusko
๐ Amigos Code: https://www.youtube.com/@amigoscode
๐ Derek Banas: https://www.youtube.com/@derekbanas
๐ Hindi + English Mix
๐ Code With Harry: https://www.youtube.com/@CodeWithHarry
๐ Chai and Code ( Hitesh ): https://www.youtube.com/@chaiaurcode
๐ KG Coding: https://www.youtube.com/@KG_Coding
๐ WS Cube: https://www.youtube.com/@wscubetech
๐Join our telegram channel
https://t.me/WebsiteDesignLearningGroup
๐ Here's a list of Youtube channels we recommend to learners :-
๐ English Only
๐ Traversy Media: https://www.youtube.com/@TraversyMedia
๐ Net Ninja: https://www.youtube.com/@NetNinja
๐ Fireship: https://www.youtube.com/@Fireship
๐ Web Dev Simplified: https://www.youtube.com/@WebDevSimplified
๐ Anson The Developer: https://www.youtube.com/@ansonthedev
๐ Programming With Mosh: https://www.youtube.com/@programmingwithmosh
๐ Telusko: https://www.youtube.com/@Telusko
๐ Amigos Code: https://www.youtube.com/@amigoscode
๐ Derek Banas: https://www.youtube.com/@derekbanas
๐ Hindi + English Mix
๐ Code With Harry: https://www.youtube.com/@CodeWithHarry
๐ Chai and Code ( Hitesh ): https://www.youtube.com/@chaiaurcode
๐ KG Coding: https://www.youtube.com/@KG_Coding
๐ WS Cube: https://www.youtube.com/@wscubetech
๐Join our telegram channel
https://t.me/WebsiteDesignLearningGroup
โค13
๐ฅ Join our discussion group https://t.me/website_DesignLearning_Group
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