• JavaScript Profile Picture

    JavaScript @JavaScript

    3 years ago

    Just curious, are you using => functions exclusively or still sticking to traditional function syntax? No judgement!

    719 250 3K 0 63
  • pie6k Profile Picture

    Adam Pietrasiak @pie6k

    3 years ago

    @JavaScript I sometimes like old ones for hoisting or inline util functions

    0 1 12 0 0
  • taishik_ Profile Picture

    Taishi 🇯🇵🇨🇦 @taishik_

    3 years ago

    @JavaScript => almost all the time!

    1 0 4 0 0
  • gothburz Profile Picture

    Petrus Germanicus @gothburz

    3 years ago

    @JavaScript Arrow functions since it’s neater especially if written on one line. 👨🏼‍💻

    0 0 2 0 0
  • marcelkargul Profile Picture

    Marcel Kargul @marcelkargul

    2 years ago

    @JavaScript I use normal function syntax but for array methods and stuff i use arrow syntax as it looks a lot cleaner

    0 0 1 210 0
  • crotweet Profile Picture

    CroTweet @crotweet

    3 years ago

    @JavaScript Using both! 💪

    0 0 12 0 0
  • VLecrubier Profile Picture

    Vincent Lecrubier @VLecrubier

    3 years ago

    @JavaScript Arrow functions because I like that functions are just values.

    0 0 11 0 0
  • pearce_emil Profile Picture

    @pearce_emil @pearce_emil

    3 years ago

    @JavaScript Traditional function syntax user here... 🥹

    0 0 4 0 0
  • ssejjembadan Profile Picture

    SSEJJEMBA @ssejjembadan

    3 years ago

    @JavaScript utility functions are mostly traditional for me... but member functions are always arrow syntax as I don't want the burden of binding scope.

    0 0 3 0 0
  • defido Profile Picture

    defido | bropump 👊⛽️ @defido

    3 years ago

    @JavaScript .then() .then() And .then()

    0 0 3 0 0
  • josebreijo Profile Picture

    José Breijo @josebreijo

    3 years ago

    @JavaScript `function` tells the reader that the line contains a function declaration, var/let/const doesn't until you keep reading. I only use arrows if I need a one-liner or to bind `this` to its lexical context, otherwise, you're adding noise to the code IMO.

    0 0 3 0 0
  • christiaanveijk Profile Picture

    Christiaan van Eijk @christiaanveijk

    3 years ago

    @JavaScript Arrow functions only

    0 0 2 0 0
  • scottyishungry Profile Picture

    ██_████████ @scottyishungry

    3 years ago

    @JavaScript I like to mix it up

    0 0 2 0 0
  • ryd3v Profile Picture

    Ryan Collins @ryd3v

    3 years ago

    @JavaScript => exclusively 😄

    0 0 2 0 0
  • JamesTsetsekas Profile Picture

    James Tsetsekas ⚡🧡 @JamesTsetsekas

    3 years ago

    @JavaScript I use a mix of both. When its a short one I will use an arrow function to keep it compact and cleaner when I have more going on I opt for a traditionally defining function

    0 0 2 0 0
  • imaaduddinn Profile Picture

    Imaad Uddin 🇵🇰 @imaaduddinn

    3 years ago

    @JavaScript Arrow functions!

    0 0 2 0 0
  • tatodobien25_ Profile Picture

    Sergio Correa_ tato @tatodobien25_

    3 years ago

    @JavaScript I'm learning JavaScript, so I mainly use traditional functions as of now. Also, I couldn't make my program work when using arrow functions in one part of it. It was related to removeEventListener...

    0 0 1 0 0
  • 0x_Sero Profile Picture

    0xSero @0x_Sero

    3 years ago

    @JavaScript I use both, but prefer =>

    0 0 1 0 0
  • Tulrin Profile Picture

    PuzzleFactory @Tulrin

    3 years ago

    @JavaScript Each has its purpose and so I will use the one that fits my use case the best.

    1 0 1 651 0
  • nxpatterns Profile Picture

    Enterprise Software Architecture @nxpatterns

    9 months ago

    For all the JS veterans and ninjas out there, please help me: - What was your biggest obstacle when you first started with JavaScript? - If you were designing a tutorial for absolute beginners in 2025, what would be your essential first chapter? - Looking back, what resources or explanations do you wish had been available when you started? - In your experience, what crucial element is consistently missing from existing JavaScript tutorials and books? Your insights could be invaluable in helping shape the next generation of JavaScript developers. Even a brief reflection could make a huge difference!  Thank you very much! #JavaScriptCommunity #JavaScript #WebDevelopment #CodingEducation #TechLearning #WebDev #Programming #CodeNewbie #100DaysOfCode #Developer #SoftwareEngineering #FrontEnd #FullStack #JSdeveloper #TechEducation #CodeLearning #LearnToCode #DeveloperCommunity #JavaScriptDeveloper #WebDevCommunity #TechTutorials #CodingTips #ProgrammingEducation #ReactJS #NodeJS

    0 0 1 30 0
  • dev_wojtek Profile Picture

    wojtek @dev_wojtek

    3 years ago

    @JavaScript react: functions on components, arrows on regular functions

    0 0 1 0 0
  • matthuntrose Profile Picture

    Matt Rose @matthuntrose

    3 years ago

    @JavaScript Depends on how/where I need to access `this`… and what `this` needs to reference.

    0 0 1 0 0
  • oz_a13banger Profile Picture

    ✚ Oz ✚ @oz_a13banger

    3 years ago

    @JavaScript =>

    0 0 1 0 0
  • 0xbillybonka Profile Picture

    Billy Bonka @0xbillybonka

    2 years ago

    @JavaScript i do => whenever i try to keep context

    0 0 1 177 0
  • JeffreyArt1 Profile Picture

    Jeff @JeffreyArt1

    3 years ago

    @JavaScript => everywhere baby 🥸

    0 0 1 0 0
  • ItsKaranKK Profile Picture

    Karan @ItsKaranKK

    6 months ago

    @JavaScript When you know what you are typing: Arrow Functions When you are thinking and staring at the screen: Function Syntax

    0 0 1 7 0
  • imse_ty Profile Picture

    Imsety @imse_ty

    3 years ago

    @JavaScript It depends on the situation. I use the regular function keyword when I can But when I want to make a simple function that returns a value or making an anonymous function I use arrows =>

    0 0 1 0 0
  • turbotobias Profile Picture

    turbotobias @turbotobias

    3 years ago

    @JavaScript I use => unless I need function this or argument. Might be irrational I just assume => doesn’t add a context and therefore is lighter

    0 0 1 0 0
  • CoderMatte Profile Picture

    Devesh @CoderMatte

    a year ago

    @JavaScript I prefer arrow functions more. There is not only a difference in syntax but it is a lot more, you can check it out here. freecodecamp.org/news/the-diffe… @JavaScript #javascript #LearnInPublic

    0 0 1 49 0
  • estnonmeaculpa Profile Picture

    Andrew Haynes @estnonmeaculpa

    3 years ago

    @JavaScript Use arrow functions for anonymous callbacks (e.g. filter, map, forEach) and functions generally elsewhere. Sometimes use function expressions when adding functionality to an object.

    0 0 0 0 0
  • InterviewsChat Profile Picture

    InterviewsChat @InterviewsChat

    12 months ago

    @JavaScript I'm all about that arrow function life! 🚀 They're just so clean and concise, you know?

    0 0 0 21 0
  • AgeNeutral Profile Picture

    agedevs.btc @AgeNeutral

    3 years ago

    @JavaScript Go go =>

    0 0 0 0 0
  • jordobaro Profile Picture

    Jordo @jordobaro

    3 years ago

    @JavaScript const name = () => {};

    0 0 0 0 0
  • theallSparky_ Profile Picture

    Sparky @theallSparky_

    2 years ago

    @JavaScript Both, I am a still getting a foothold with programming in general,and learning how to use both interchangeably is a cool milestone

    0 0 0 6 0
  • B_McMoney Profile Picture

    B McMoney @B_McMoney

    9 months ago

    @JavaScript Arrow funcs FTW! ...well mostly

    0 0 0 18 0
  • lions17727373 Profile Picture

    Luke @lions17727373

    4 months ago

    @JavaScript Arrow

    0 0 0 3 0
  • MADEINSPM Profile Picture

    MCMXCIV @MADEINSPM

    3 years ago

    @JavaScript I use the traditional way only when I want to use this

    0 0 0 0 0
  • Download Image
    • Privacy
    • Term and Conditions
    • About
    • Contact Us
    • TwStalker is not affiliated with X™. All Rights Reserved. 2024 www.instalker.org

    twitter web viewer x profile viewer bayigram.com instagram takipçi satın al instagram takipçi hilesi twitter takipçi satın al tiktok takipçi satın al tiktok beğeni satın al tiktok izlenme satın al beğeni satın al instagram beğeni satın al youtube abone satın al youtube izlenme satın al sosyalgram takipçi satın al instagram ücretsiz takipçi twitter takipçi satın al tiktok takipçi satın al tiktok beğeni satın al tiktok izlenme satın al beğeni satın al instagram beğeni satın al youtube abone satın al youtube izlenme satın al metin2 metin2 wiki metin2 ep metin2 dragon coins metin2 forum metin2 board popigram instagram takipçi satın al takipçi hilesi twitter takipçi satın al tiktok takipçi satın al tiktok beğeni satın al tiktok izlenme satın al beğeni satın al instagram beğeni satın al youtube abone satın al youtube izlenme satın al buyfans buy instagram followers buy instagram likes buy instagram views buy tiktok followers buy tiktok likes buy tiktok views buy twitter followers buy telegram members Buy Youtube Subscribers Buy Youtube Views Buy Youtube Likes forstalk postegro web postegro