Devesh Tulshyan @code4fun_devesh
Full Stack MERN Web Developer. Technical Writer, Learn New Concepts Everyday, Love What You Do, Post What You Learned. Open for Remote Work. #hireme react-portfolio-devesh.web.app Kolkata, India Joined June 2022-
Tweets208
-
Followers146
-
Following463
-
Likes2K
JavaScript #74 Parameters:- function show(text) { alert(text); } show("hello"); // it will alert 'hello'. Function parameters are used to pass values to a function for working with it. This way a function becomes reusable and can render different outputs based on inputs.
JavaScript #73 Functions :- function show() { alert("hello"); } show(); // it will alert 'hello'. Local Variables are variables declared within a function are not visible outside the function. But, function can access a variable declared outside it called Outer Variables.
JavaScript #72 Function Declaration :- function message(p1, p2, ....) { // body } First comes the 'function' keyword, then comes the name of the function and parenthesis. Parenthesis include the parameters separated by comma. The function body is between two curly braces.
JavaScript #71 Functions :- Functions makes programs clean and modular. Functions are used to create a piece of code which does some specific task, and can be re-used anywhere within the program. alert(msg); is also a function, open and closed parenthesis denotes a function.
JavaScript #70 Switch Statement :- If we pass a value of different type in case, that case will be dead, other lines will get executed until break. Example :- case '0': case '1': case 2: 2 is not a string but a number and if switch was of string type, case 2 will be dead.
JavaScript #69 Switch Statement :- The value of the switch variable is compared with every value of the cases one by one. The one case which matches gets executed till a break occurs. Also if any values don't match, the default case gets executed. Default case is optional.
JavaScript #68 Switch Statement :- It is a replacement for multiple if checking statements. Syntax :- switch(x) { case 'value1': // if (x === 'value1') ..... [break] case 'value2': // if (x === 'value2') ..... [break] default: ..... [break] }
JavaScript #67 Labels :- outer: for (let i = 0; i < 3; i++) { for (let j = 0; j < 3; j++) { alert(i+j); if(i === 2) break outer; } } If it was normal break, it would have exited out of inner loop, not the outer loop. Same can be used with continue.
JavaScript #66 The continue directive :- The continue directive is used to skip the loop for some specific conditions. for(let i = 0; i < 5; i++) { if(i % 2 == 0) { continue; } alert(i); } So, when i is even, continue is executed, and alert is skipped.
JavaScript #65 The break directive :- A loop terminates when it's condition part becomes false, but we can also terminate the loop by force exiting at any time using break directive. for(let i = 0; i < 5; i++) { alert(i); if(i === 3) { break; // exits. } }
JavaScript #64 Parts of For Loop can be skipped too. let i = 0; for( ; i < 3; i++) alert(i); 0 1 2 will be the output but we skipped the initial part of the for loop and it is perfectly valid. Also we can skip the increment part, for( ; i < 3; ) alert(i++); 0 1 2
JavaScript #63 For Loop :- For alerting 1, 2 and 3 we can use a for loop :- for(let i = 1; i <= 3; i++) { alert(i); } Loop will stop when i becomes 4. The variable i is declared inside of the loop so it is only available inside the loop. It is called inline variable.
JavaScript #62 For Loop :- It is a more compact loop :- for(begin; condition; step) { statements; } Begin: Executes once in the beginning. Condition: Checks if true at every iteration before entering the loop body. Step: Executes after execution of body in each iteration.
JavaScript #61 Do-While Loop :- The condition check is done after the loop body is executed. do { statements; } while (condition); This loop will at least execute once because the condition is checked at the end, even if condition is false.
JavaScript #60 let i = 1; while (i <= 3) { alert(i); i++; } We have i=1, so in the while condition, 1 <= 3 so we get inside the loop. We alert 1, i++ means i becomes 2. Again at the while loop, 2 <= 3 so i gets inside and repeats until i = 3 and then quits.
JavaScript #59 Basic Loops :- Loops are used to repeat or loop over some statements over and over again. while loop :- while (condition) { loop body, statements here! } This loop repeats till the condition is true, exits the loop when condition becomes false.
JavaScript #58 Logical Operators :- Nullish coalescing :- It is very similar to OR (||) but, ?? considers only null and undefined to be a false value, whereas OR considers any zero value to be false like "", 0, etc. let marks = 0; marks || 100 gives 100. marks ?? 100 gives 0.
JavaScript #57 Logical Operators :- Nullish coalescing :- a ?? b returns a if a is defined or b, if a is undefined. let myAge = 20; alert(myAge ?? "Unknown"); Since myAge is defined, it will return 20. let myAge = null; alert(myAge ?? "Unknown"); It will return Unknown.
JavaScript #56 Logical Operators :- Nullish coalescing :- It treats null and undefined the same way, and other values grouped as another way which may be referred to as defined values. It returns the first argument if defined, otherwise the second undefined argument.
JavaScript #55 Logical Operators :- NOT Working :- It is represented by ! symbol. !true = false, !false = true. Converts to Boolean and reverses the result. !5 = !(true) = false, !0 = !(false) = true. Sometimes, !! is used to convert to Boolean. !!5 = !false = true.

Ayush Kumar @AyushKu38757918
5K Followers 819 Following he/him 🙋 | 🥑 @nodeshiftai ┃@github Campus Expert 🚩| Ex - @awscloud Community Builder ☁️ ┃Ex - @TechlatestNet, @opengigofficial, @humalect, @NimbleEdgeInc
Ankit Kiran 🍟 @AnkitKiran7
550 Followers 617 Following Building https://t.co/Ru2cFKdC9j, SDE Intern @CRED_club, Ex @WootzApp (@solana project) . Member @SuperteamDAO, GSoC'23 @ChromiumDev, NITRkl'25.
Data Girl @hanuna_ma_data
4K Followers 3K Following Cloud and Big Data Engineer Tweeting about daily problems & solutions of an engineer Learning #kubernetes
Aditi. @aditiintechk
860 Followers 575 Following coding, psychology & dinosaurs • be kind to yourself • karla is the best font, period.
Mafalda Doyle-Lockman @DoyleLockm27607
28 Followers 2K Following
Alexandra @Guirwi7835218
17 Followers 2K Following
Kutbuddin Kapadia @KutbuddinKapad2
6 Followers 106 Following passionate about Ai and machine learning.
Pumpin7 Odusi @POdusi
687 Followers 6K Following Software Engineer,Project Manager,Accountant,Salesforce Admin,and a DJ
Magical Jhola @MagicalJhola
3 Followers 46 Following Your one-stop shop for enchantment. We design apps & webs, stunning home decors, create personalized gifts, crochet plushies, keychains, and more
Tanya Batra @Tanyabatra_30
8 Followers 68 Following
Manish Kumar @manishKumrrr
14 Followers 311 Following Web Developer | MERN Stack | React JS https://t.co/61XN5yLb1R
Jay Bourne @HelloBourne
41 Followers 78 Following I mean, we're all trying to find out who the hell we are, aren't we?
Lakindu Jayasena @LakinduJayasena
660 Followers 4K Following Tech Enthusiast 🔍 | IT Systems Engineer 👨💻 | Blogger ✍ || CCNA | RHCSA | RHCE | AWS SAA
Subhradwip Kulavi | S... @Subhradwip7
208 Followers 464 Following Software engineer • prev contributor @layer5 @_buildspace s4 • built @linkcollect_io
anshul sangwan @SuperTramp_369
1 Followers 67 Following
Cyrus holiday @Cyrusholiday71
208 Followers 613 Following I am a Sr. UI/UX Designer and I deliver cost-effective designs without compromising the quality.
codehooks.io @codehooksio
421 Followers 2K Following A lightweight, AI-friendly, JavaScript-first serverless platform for developers who need to build and deploy backend APIs, integrations, and automations quickly
Alok Kumar 🇮🇳 @alok_aryan51
163 Followers 768 Following Intern @ Virtusa || Software Developement Engineer || Tech enthusiast👨💻 || 559 🅿Geeksforgeeks || Leetcode 85+
abdi hakim mohamed @MAbdib4u
255 Followers 960 Following
Vidhi Chadha @Vidhichadha25
297 Followers 223 Following Grand Finalist of Smart India Hackathon 2022||Web developer|| DevOps enthusiast|| Freelancer|| Github-https://t.co/kN8jQNnqAt
kartikay.eth/0xkartik... @0xkartikay
550 Followers 2K Following Leading Community Programs (APJ) - @Elastic | Brewing storm: @getcertifyme | Ex-OutSystems, @scaler_official & @airtribe_live
fortune @jazmindaniel120
31 Followers 316 Following
codewithriley @codeWithRiley
70 Followers 326 Following Aspiring Self-Taught Web Developer (HTML, CSS, JS) 📚 The Odin Project
Temynator XT 🐍 @TemynatorXT
493 Followers 2K Following print ('I am learning Python!') {EvE Pilot} /\Did some HTML CSS. /\ Back at it again with Python! /\ (I like Automation, Robotics, A.I. M.L. Data Scraping.)
Kinza @kinzacodes
1K Followers 877 Following Software Engineer | I build agentic systems that learn, plan, and act — in the cloud and in the real world.
Linus Sunday @Sundaydonatus12
7 Followers 54 Following am a website developer(html,css,sass,bootstrap,js, react,php,) also a graphics designer,ui/ux designer and a forex trader
Afreed @Afreed61998250
47 Followers 926 Following
Noshin Nawar Neha @noshin_nnn
434 Followers 3K Following Data Analyst | AI & Machine Learning Enthusiast LinkedIn: https://t.co/HveUrvJcrl Kaggle: https://t.co/0Yj8vwtzon
Anant Gupta @AntGupta04
91 Followers 709 Following India to https://t.co/2xYgNOsqPw graduate at saxon telescopes.
Akshay Sonawane @AkshayS83588033
12 Followers 160 Following Passionate MERN stack developer | Transforming ideas into web apps | 6 months of experience | Lover of clean code |
🍁ØVI••• @wais_chowdhary
202 Followers 134 Following 🍁 LIFE IS BRIGHTER🍁 when we focus on what truly matters.
Gurgaon Meditation @MeditationIN
53K Followers 58K Following When you go to Truth by discarding your karma, habits and body which are your human mind and are reborn from there, you can become complete and live eternally.
Darcy DeClute | Scrum... @scrumtuous
261K Followers 3K Following I wrote a book! 🥳Not a Gumroad eBook scam but a real book! 📕 https://t.co/ttVHSuusdr Buy the hardcover, now on Amazon!📚 https://t.co/VqLLzaE5Ds
Ryan K Hawkins @F5DevLife
2K Followers 4K Following Dad, Veteran, Animal lover Software Developer: #100Devs, Javascript, Python Interests: photography, guitar, personal finance Open to coffee chats
Chloe Foster @ChloeFosterTP
14 Followers 68 Following Tech Recruiter searching for the future in the Berlin start-up scene Sourcing Frontend/Fullstack and more 🔥 DM me or feel free to connect on Linkedin!
Apu paul @growwithapu
17 Followers 98 Following
Sanjeev Bhandari @Sanjeev__11
6 Followers 250 Following
REFA @refaghaznavi
2K Followers 5K Following Founder of Student Path - Online Learning | 5K+ Installs | 4.8 Rating | 623+ Review | 186 Country | Computer Science, Business, Lifestyle & Self-Improvement!
Rajeev Mohan @Rajeev_mo
3K Followers 4K Following Tech optimist. Web3 + AI is where the world is headed
Kevin Negro @Nivek_Tzu
4 Followers 10 Following Aspiring developer tracking my progress for self accountability
Kate 🌸 @redkathh
2K Followers 2K Following Technical Writer @OSSPhilippines • Software Engineer • INFJ • Uaena • EXO-L header by @_itsmerys
Hhanna @Hhanna07193924
2 Followers 19 Following
Kunal Kushwaha @kunalstwt
262K Followers 2K Following Teaching millions how to code and helping businesses scale. Founder @WeMakeDevs
Eddie Jaoude | Open S... @eddiejaoude
195K Followers 2K Following 🤓 DevRel as a Service 🌏 Digital Nomad 🇬🇧🇵🇹🇹🇭 📱 Create your Directory: https://t.co/1YEeREIVGQ 👀 Preview your social posts: https://t.co/iFLcDm8Xo3
Ayush Kumar @AyushKu38757918
5K Followers 819 Following he/him 🙋 | 🥑 @nodeshiftai ┃@github Campus Expert 🚩| Ex - @awscloud Community Builder ☁️ ┃Ex - @TechlatestNet, @opengigofficial, @humalect, @NimbleEdgeInc
Pratham @Prathkum
439K Followers 898 Following I talk about web and social • DevRel @APILayer • Building https://t.co/niju9j3UA2 & https://t.co/TxBXHrPKDu • Prev @Rapid_API @HyperspaceAI
Ankit Kiran 🍟 @AnkitKiran7
550 Followers 617 Following Building https://t.co/Ru2cFKdC9j, SDE Intern @CRED_club, Ex @WootzApp (@solana project) . Member @SuperteamDAO, GSoC'23 @ChromiumDev, NITRkl'25.
Csaba Kissi @csaba_kissi
246K Followers 1K Following Solopreneur • 200 projects • DM for collabs ➡️ https://t.co/Hu4kjfaOS7 ➡️ https://t.co/Rg6a9nGcPe ➡️ https://t.co/yuysSDkcfo
Pradumna Saraf @pradumna_saraf
39K Followers 60 Following Open Source Developer | Developer Advocate | Docker Captain | DevOps | Golang | Owner @rebasemedia | DM for collabs | 🏸 ♟️
Adarsh Gupta ✨ @Adarsh____gupta
36K Followers 612 Following Selling Code since 2018 | software duh..veloper | Latest Prenuer: https://t.co/kNE0Ssnrta
Hasan Toor ✪ @hasantoxr
406K Followers 531 Following Sharing insights on AI, Tech Trends, Online Business & Productivity • I help people master AI, Tech Tools & Digital Skills • AI Educator & Writer @theprohumanai
Saiyam Pathak @SaiyamPathak
60K Followers 2K Following Head of Developer Relations @loft_sh | Founder @kubesimplify| He/Him tweeting my opinions | email - [email protected]
Danny Thompson @DThompsonDev
298K Followers 2K Following Software Developer | Director Of Technology @ThisDotLabs | I've helped 1000s of people land jobs in tech | Book a 1:1 https://t.co/9pEdQaBy3J
Francesco Ciulla @FrancescoCiull4
199K Followers 379 Following -Software Developer -Rust, Docker, Web Dev -DevRel @dailydotdev -Docker Captain -Keynote Speaker -1M community...60%
Marko Denic @denicmarko
263K Followers 476 Following Software Engineer - Content Creator - Community Builder
tomato 🍅 @neembu_paani31
20K Followers 2K Following 23 • engineer • ex - codenation, @microsoft, @mercor_ai, 5x startups • cricket • he/him • iitkgp'25
Madza 👨💻⚡ @madzadev
125K Followers 497 Following Tech writer @logrocket, @sitepointdotcom and @refine_dev 📚 Built DevTunes FM (1.4M+ listens) and DevQuizzes (900K+ answers) 🚀
sergii @SergiiKirianov
19K Followers 1K Following next.js idiot | typescript guesser | tech lead @whiz_study | fullstack js is awesome | remote 🇨🇦
Swapna Kumar Panda @swapnakpanda
213K Followers 198 Following | Tech Writer, Educator | Python, Java, JavaScript, SQL | DSA, Development | Free Resources, AI Tools | Other Version: @therealswapna | Building @JabardastDEV |
arman @armankhon
80K Followers 153 Following
Hamster Kombat @hamster_kombat
12.7M Followers 14 Following TG - https://t.co/xPEVjGpcvU PLAY - https://t.co/XAVw4CjuA7 YT - https://t.co/cX1RQiQeUG [email protected]
Nancy Solanki @catalyst_girl
14K Followers 145 Following SWE @Microsoft |Seasonal Intern’22 and Summer Analyst’21 @goldmansachs |IGDTUW'22|Scholar GHC'21| Collab : [email protected]
embersunn @embersunn
30K Followers 490 Following Cloud Software Engineer in MedTech | Tech Commentator | Java hates you too
˗ˏˋmewtru´ˎ˗ @trunarla
102K Followers 736 Following I made https://t.co/hiOSECjQtd & https://t.co/0IBEbdSdiv https://t.co/r6Rx43hirg this my guy 👉 @HesJustJordy
Jessica B. Davis, MBA... @W0rldWideJess
39K Followers 4K Following Mostly friendly Black hottie 😍🌶️book your career coffee chat with me here 👇🏾 https://t.co/qj6rfyHCJv
Genshin Impact @GenshinImpact
5.6M Followers 18 Following In the world of Teyvat — where all kinds of elemental powers constantly surge — epic adventures await, fearless Travelers! #GenshinImpact
mehek 🍄 @mehekprabhakar
1K Followers 2K Following wannabe cat, designing brands and products @DacoitDesign ✨ c7 @10kdesigners, prev @exaprotocol @shopflo_
MrBeast @MrBeast
33.2M Followers 2K Following DONATE TO TEAMWATER $1 IS 1 YEAR OF CLEAN WATER FOR SOMEONE IN NEED!
Pratchi 🌥 @praatchi
24K Followers 66 Following This is a social experiment y’all | Instagram- @praatchi 🫶🏽
Harshita @harshuutweets
9K Followers 675 Following aao sakhi, trauma dump kare 🥰🫶🏼 memes | relatable | us behen moments✨ 💌: [email protected]
WeAreDevelopers @WeAreDevs
28K Followers 1K Following We are the community for developers from all over the world. Helping you to level up your dev career and having fun on the way. #wearedevs
Alanna @alannac111
2K Followers 737 Following 👩🏻💻Software Developer. Sharing my #100devs journey learning full stack web development. 🇨🇦 love nature, cats & music.
Alok Kumar 🇮🇳 @alok_aryan51
163 Followers 768 Following Intern @ Virtusa || Software Developement Engineer || Tech enthusiast👨💻 || 559 🅿Geeksforgeeks || Leetcode 85+
Rishab Kumar @rishabincloud
21K Followers 524 Following • developer relations @twilio • building @learntocloud
Hacktoberfest @hacktoberfest
33K Followers 14 Following The official account for #Hacktoberfest 💻, a month-long celebration of open-source projects, their maintainers, and the entire community of contributors. 💙
Jason 🐱🍞 @JasonEtco
3K Followers 783 Following Staff Software Engineer on the “wouldn’t it be great if” team at @GitHub. My cat sleeps on my toaster. 🐱🍞 he/him.
Katherine Oelsner @katherinecodes
15K Followers 2K Following Senior Software Engineer @github 👩💻🐶🐱🐱
David K 🎹 @DavidKPiano
74K Followers 3K Following Making state machines at @statelyai · prev. @Microsoft · I play piano
Ben Awad @benawad
123K Followers 611 Following building https://t.co/SZfF7dW76F • software consultant • youtuber
Josh Long @starbuxman
83K Followers 4K Following Spring Developer Advocate (@Java_Champions & @Kotlin @GoogleDevExpert) @VMwareTanzu 🍃🐲 📽️ https://t.co/A2wBUe0b0A
The IT Chad 💻 @TheITChad
367 Followers 935 Following Software Engineer 👨💻 | MERN Stack | Full Stack Dev #icandev
Saheed Kolawole @temabef
198K Followers 887 Following Guide to securing fully funded scholarship e-book: https://t.co/QpAixMUN6k | Developing https://t.co/ugYUOCL81L
Jess Chan | Coder Cod... @thecodercoder
46K Followers 81 Following Learn how to build a responsive website with HTML, Sass/SCSS, JS, from a Figma design. ➡️ https://t.co/tjikHGuVv3
Bryan Huffstutler @Bryan_FS_Dev
12 Followers 47 Following FullStack Developer || MERN || Python || Django || Jest || NextJS || Always Learning New Things
Hassan @nutlope
94K Followers 890 Following Director of Developer Experience @togethercompute. Building open source AI apps (https://t.co/f8hbvXOFaN, https://t.co/SmHisRTtnp, https://t.co/H3xCBJvVMu, https://t.co/sed83e9OUA).
Shivayan Bora @shivayanbora
151 Followers 308 Following Senior Frontend Engineer @UiPath 💻 | I talk about Software Engineering, Generative AI and Developer Productivity
Kaila @kailavansumer
2K Followers 708 Following Product design as a day job. Optimistic about the future. Materialism is over.
REFA @refaghaznavi
2K Followers 5K Following Founder of Student Path - Online Learning | 5K+ Installs | 4.8 Rating | 623+ Review | 186 Country | Computer Science, Business, Lifestyle & Self-Improvement!
Rajeev Mohan @Rajeev_mo
3K Followers 4K Following Tech optimist. Web3 + AI is where the world is headed
Oliver 🇬🇧 @oliverjones_x
28K Followers 2K Following I have generated over $1,000,000 in sales online from selling tshirts! Now i show you exactly how i did it 🤓
Kate 🌸 @redkathh
2K Followers 2K Following Technical Writer @OSSPhilippines • Software Engineer • INFJ • Uaena • EXO-L header by @_itsmerys
Bry @rouprame
460 Followers 798 Following
Jakub T. Jankiewicz �... @jcubic
3K Followers 379 Following 🧙JavaScript expert 🟨 🇵🇱 🇪🇺 Open Source developer 👨💻 Inspired by early MIT hackers 😎 making cool things on the Web 🌐⚛️ DM 👉 https://t.co/CY7FF6PEEa
Chris Rickard @chrisrickard
5K Followers 676 Following Better software specs == better software. ✨ Founder and CEO of https://t.co/sJvlacs3qu ✨ Software & AI engineer ✨ Helps people build better software
Nazrul Islam @nazrulislambhat
174 Followers 212 Following The next chapter demands silence. See you on the other side. 🚀 Building @stacknothing
Sara El-Ateif 🇲�... @el_ateifSara
3K Followers 4K Following PA @ENSIASDT | @Mindvalley Certified Business Coach | AI&ML @Google Dev. Exp. & Ph.D. Fellow | DLI Instr. @NVIDIA | Amb. @WomenTechmakers | Lead @TensorFlowC
Tracy Lee | ladyleet @ladyleet
44K Followers 12K Following CEO @thisdotlabs helping teams get 5x faster w/ AI tools. Investor @roo_code @builderio @statelyai, 5x MSFT MVP Award, 7x Google Developer Expert, 3x Github 🌟
Meriem Dadda @meriem_Dadda
327 Followers 1K Following Mulesoft Certified Developer | Software & Data engineer
Othmane | عثمان @OthCodes
1K Followers 878 Following Software Engineer | JavaScript, React, Node & more.