lol = lol => lol(+1)
console.log(lol((lol=2)=>lol +1))
What will it print ?
console.log(lol((lol=2)=>lol +1))
What will it print ?
Anonymous Quiz
30%
1
35%
2
31%
3
4%
4
Which javascript function is used to insert new data in array
Anonymous Quiz
33%
insert
22%
add
41%
push
3%
pick
👍1
console.log(1 == 1 == 1)
console.log(0 == 0 == 0)
console.log(0 == 0 == 0)
Anonymous Quiz
60%
true, true
28%
true, false
3%
false, true
9%
false, false
👍3
Become coding expert by Codes channels and groups with Yt videos also
https://t.me/addlist/2UhsQW_cGzkxMzg1
https://t.me/addlist/2UhsQW_cGzkxMzg1
Telegram
Coding
सिद्धार्थ शर्मा invites you to add the folder “Coding”, which includes 26 chats.
Telegram bot development series
Topics Covered in this video:
00:00 - Introduction to telegram messenger
03:48 - Introduction to Telegram bot
07:31 - Introduction to Bot father
08:47 - Introduction to Node js
09:38 - Introduction to Telegraf
10:26 - Summary
https://youtu.be/ffwWEW1p9os?si=AokCebwK8LZgEkSr
Topics Covered in this video:
00:00 - Introduction to telegram messenger
03:48 - Introduction to Telegram bot
07:31 - Introduction to Bot father
08:47 - Introduction to Node js
09:38 - Introduction to Telegraf
10:26 - Summary
https://youtu.be/ffwWEW1p9os?si=AokCebwK8LZgEkSr
YouTube
Introduction to Telegram and Telegram bot | Telegram bot development by Telegraf and node js
In this video, I exaplained You about introduction of telegram, telegram bots, botfather, node js and telegraf library. All these are important parts to create telegram bot and I also shown you some of the bots which working nicely for free.
Keys:
Telegram…
Keys:
Telegram…
Learn Telegram bot development using Nodejs telegraf library: https://www.youtube.com/playlist?list=PLjEYzWkdEvxvJ8lZacERw_NiUKbB7l_dx
Roj naye videos isme as rhe hain
Channel subscribe karlo jisse aap aane vale sare bot development ke video dekh pao
Roj naye videos isme as rhe hain
Channel subscribe karlo jisse aap aane vale sare bot development ke video dekh pao
Understand Basic Code Examples of Telegraf || Create telegram bot by nod...
https://youtube.com/watch?v=-kfL29uJaX8&si=rMAV7ZTEQ-YiI012
https://youtube.com/watch?v=-kfL29uJaX8&si=rMAV7ZTEQ-YiI012
YouTube
Understand Basic Code Examples of Telegraf || Create telegram bot by node js #3
Understand Basic Code Examples of Telegraf || Create telegram bot by node js #3
In this video, I exaplained You some basic Examples with start and help handlers and reply function and some of basics which you need to know for first time.
Keys:
How to create…
In this video, I exaplained You some basic Examples with start and help handlers and reply function and some of basics which you need to know for first time.
Keys:
How to create…
Learn Telegram bot development using Nodejs telegraf library: https://www.youtube.com/playlist?list=PLjEYzWkdEvxvJ8lZacERw_NiUKbB7l_dx
1 more video added
Subscribe to get updates
1 more video added
Subscribe to get updates
How telegram usase bot api server || telegram bot communication | bot de...
https://youtube.com/watch?v=4rQag9NBtEQ&si=fClSDb4bENQ_wUgE
Full Playlist: Click Here
https://youtube.com/watch?v=4rQag9NBtEQ&si=fClSDb4bENQ_wUgE
Full Playlist: Click Here
YouTube
How telegram usase bot api server || telegram bot communication | bot development series #4
In this video, I exaplained You basic flow of data/message in telegram. I exaplained about how telegram send or get any message from those clients like mobile apps or bot api servers.
Keys:
What is telegram,How telegram bot api works,How telegram works…
Keys:
What is telegram,How telegram bot api works,How telegram works…
Telegram bot me kis kis tarah ke events updates aate hain full info video no 5
https://youtu.be/0Oa-CdlCT9s
Playlist: Click Here
https://youtu.be/0Oa-CdlCT9s
Playlist: Click Here
YouTube
Telegram bot updates || Telegram bot events || Telegram node js bot development by Telegraf #5
In this video, I exaplained You about which events occurs when we send message in telegram. I described many telegram events/updates in this video.
Keys:
Telegram events kya hote hain,Telegram me updates kya hote hain,Telegram bot api me updates kaise dikhte…
Keys:
Telegram events kya hote hain,Telegram me updates kya hote hain,Telegram bot api me updates kaise dikhte…
Government ne google ki dadagiri ko khatm karne ke liye apna khud ka app store banaya hai 🔥😍
Playstore pe jo apps hain unhe 30% Playstore ko apni kamayi ka hissa dena padta hai
https://apps.mgov.gov.in/details?appid=270
Aap sabhi ye government playstore ko download kare Aur logo ko bhi share Kare
Government ne to apna Kam Kar diya ab hamari Bari.
Playstore pe jo apps hain unhe 30% Playstore ko apni kamayi ka hissa dena padta hai
https://apps.mgov.gov.in/details?appid=270
Aap sabhi ye government playstore ko download kare Aur logo ko bhi share Kare
Government ne to apna Kam Kar diya ab hamari Bari.
👍1
Create own advanced realtime io compiler bot on telegram See full tutorial:
https://telegram.me/logicBots/226
https://telegram.me/logicBots/226
Telegram
Logic Bots latest Updates
IOCompiler core latest version
Version: 3.2.2
VersionNo: 22
Github:
https://Github.com/Panditsiddharth/compilers
NPMjs
https://npmjs.com/Panditsiddharth/iocompiler
How to Create Our own compiler bot for Telegram?
Step1: First we create our bot on telegram…
Version: 3.2.2
VersionNo: 22
Github:
https://Github.com/Panditsiddharth/compilers
NPMjs
https://npmjs.com/Panditsiddharth/iocompiler
How to Create Our own compiler bot for Telegram?
Step1: First we create our bot on telegram…
// Get Your public ip address
const https = require('https');
https.get('https://api.ipify.org?format=json', (resp) => {
let data = '';
// A chunk of data has been received.
resp.on('data', (chunk) => {
data += chunk;
});
// The whole response has been received.
resp.on('end', () => {
const ip = JSON.parse(data).ip;
console.log(`Your public IP address is: ${ip}`);
});
}).on("error", (err) => {
console.log("Error: " + err.message);
});👍5❤2