Learn all the JavaScript concepts you need to become a pro Wized developer

Поделиться
HTML-код
  • Опубликовано: 11 июл 2024
  • In this session, Alex will go over all the basic JavaScript concepts you must know to become a top Wized developer. 1 hour packed with goodies you can't miss!
    -----------------------------------------------
    // TIMESTAMPS
    0:12 Intro & pre-show chit chat
    2:33 Disclaimer
    4:10 Stream overview
    7:45 Functions
    21:13 Values
    33:19 Variables
    54:49 Conditionals
    01:05:54 Closing thoughts & feedback
    -----------------------------------------------
    // RESOURCES FROM THE VIDEO
    Wized: www.wized.com/
    Preview of the Wized project: app.wized.com/preview/JNJI8Ui...
    Finsweet.com - www.finsweet.com/
    Finsweet merch store - finsweet.com/merch
    Signup to Finsweet+ - finsweet.com/plus
    Subscribe to Finsweet RUclips - ruclips.net/user/Finsweet?su...
    -----------------------------------------------
    // ABOUT US
    We’re Finsweet - a Webflow enterprise partner, badass product creator, and educational content powerhouse. We are taking Webflow to a new level and sharing everything with you along the way!
    🙌 Join our community - finsweet.com/plus
    🔥 Add superpowers to your Webflow website - finsweet.com/attributes
    🧰 Extend your Webflow workflow - finsweet.com/extension
    🚀 Build clear, scalable & organized Webflow websites - www.finsweet.com/client-first
    👀 Check out products used at Finsweet - www.finsweet.com/recommended
    🛍️ Buy Finsweet merch - finsweet.com/merch
    -----------------------------------------------
    // SOCIAL
    Podcast: anchor.fm/finsweet
    Twitter: / finsweet
    Instagram: / finsweet
    Facebook: / thatsfinsweet
    Dribbble: dribbble.com/thatsfinsweet
    Behance: www.behance.net/thatsfinsweet/
    Webflow: webflow.com/team/Finsweet/
    -----------------------------------------------
    // TAGS
    #wized #javascript #lowcode
    -----------------------------------------------
    Thanks for your support! 🤟
  • НаукаНаука

Комментарии • 5

  • @itimb
    @itimb День назад

    Great video. Can you go further and create a deeper one. I have learn a lot about Wized.

  • @fathom5209
    @fathom5209 22 дня назад

    Excellent video. Just the basics but helped sort a couple of questions in my mind. With javascript is seems the more your learn the faster you learn. One question: It seems the === and !== should generally be used, except when assessing null? Maybe != and == is safer with null when the value might be undefined or " " (empty string)?

    • @fathom5209
      @fathom5209 22 дня назад

      Further reading suggests checking for an empty string should be handled separately: if (query != null && query !== "") . Does this seem correct?

    • @alexiglesias_me
      @alexiglesias_me 21 день назад +1

      I always recommend using straight equality checks, and always be explicit about all the types you’re checking for.
      If you want to check if something is undefined or an empty string, then I would simply use a negation like:
      if (!value) {}
      The reason is because undefined, null and an empty string are all falsy values.

    • @fathom5209
      @fathom5209 20 дней назад

      @@alexiglesias_me Thank you : )