fa
Feedback
Web development

Web development

رفتن به کانال در Telegram

Web development learning path Frontend and backend resources. HTML, CSS, JavaScript, React, APIs and project ideas. Join 👉 https://rebrand.ly/bigdatachannels DMCA: @disclosure_bds Contact: @mldatascientist

نمایش بیشتر
4 164
مشترکین
+124 ساعت
+107 روز
+4230 روز
آرشیو پست ها
HTTP vs HTTPS
HTTP vs HTTPS

API Architecture Styles
API Architecture Styles

UX vs UI
UX vs UI

Most Utilized API Architectures
Most Utilized API Architectures

API Protocols
API Protocols

Repost from Programming memes
Front end vs backend 😂
Front end vs backend 😂

Cookies and Session
Cookies and Session

Important Linux Commands
Important Linux Commands

Web Developer Skills
Web Developer Skills

Next JS with React Hooks - Building SSR React Applications Get up and running with React Hooks and Next Js in a Day. Learn to build Server Side Rendered (SSR) React applications. Rating ⭐️: 4.5 out 5 Students 👨‍🎓 : 21,746 Duration ⏰ : 1hr 48min of on-demand video Created by 👨‍🏫: Ryan Dhungel 🔗 COURSE LINK #react # hooks #nextjs ➖➖➖➖➖➖➖➖➖➖➖➖➖➖ 👉Join @bigdataspecialist for more👈

10 Must know JavaScript concepts before learning React 1. Basics 2. The Ternary Operator 3. Destructuring 4. The Spread operator 5. Array methods 6. Arrow Functions 7. Promises 8. The Fetch API 9. Async/Await 10. ES modules and Import/Export

REST API Cheatsheet
REST API Cheatsheet

HTTPIE DESKTOP DOCS HTTPie Desktop is a cross-platform API testing client for humans. Use it to test REST, GraphQL, and HTTP
HTTPIE DESKTOP DOCS HTTPie Desktop is a cross-platform API testing client for humans. Use it to test REST, GraphQL, and HTTP APIs painlessly. HTTPie Desktop is available for desktop and mobile browsers and as a dedicated desktop app for macOS, Windows, and Linux. HTTPie’s Web app is equivalent to the desktop app, except for certain limitations. Go to httpie.io/app Or use the short & sweet alias req.new HTTPie's desktop app lets you work locally and has a distraction-free interface. Source-Link: httpie

Building of Web3 Token Balance Applications Web3/Blockchain Course by MTF Institute and QuickNode Rating ⭐️: 4.4 out 5 Students 👨‍🎓 : 16,816 Duration ⏰ : 1 hour on-demand video Created by 👨‍🏫: MTF Institute of Management, Technology and Finance 🔗 COURSE LINK ⚠️ Its free for first 1000 enrollments only! #web3 ➖➖➖➖➖➖➖➖➖➖➖➖➖➖ 👉Join @web_dev_bds for more👈

Soap vs Rest vs GraphQL
Soap vs Rest vs GraphQL

JavaScript
JavaScript

Developing RESTful APIs with JAX-RS 🆓 Free Online Course Duration ⏰: 7-8 hours 💻 Lecture Videos 🏃‍♂️ Self paced Teacher 👨‍🏫 : Prof. koushk 🔗 Course Link #programming #APIs #restful_APIs ➖➖➖➖➖➖➖➖➖➖➖➖➖➖ 👉Join @bigdataspecialist for more👈

Repost from Tech News
Top 10 Platforms To Learn JavaScript Coding in 2024 JavaScript has become a crucial foundation to website making, and webpage
Top 10 Platforms To Learn JavaScript Coding in 2024 JavaScript has become a crucial foundation to website making, and webpages that operate smoothly today, utilize and owe their interactive and dynamic characteristics to JavaScript. Along with the programming language of JavaScript, which is a must for every web developer, the presence of excellent learning platforms emerges as an essential solution for the rising need of adept JavaScript developers. Whether getting started with coding as a newbie or a JavaScript developer ready to improve, these top-tier online platforms are like the best place to learn JS from. Source-Link: analyticsinsight

Closure in Javascript

The output will be 456 Here's how: - a is initialized as an empty object using {}. - b is initialized as an object with a pro
The output will be 456 Here's how: - a is initialized as an empty object using {}. - b is initialized as an object with a property key set to the string 'b'. - c is initialized as an object with a property key set to the string 'c' The code assigns values to properties of a using b and c as keys. But, when a non-string value is used as a property key, it is automatically converted to a string. Then: - a[b] = 123 assigns 123 to the property with key 'object Object' in a. - a[c] = 456 assigns 456 to the property with key 'object Object' in a. This overwrites the previous value. Finally, console.log(a[b]) is called, that accesses the value of the property with key 'object Object' in the a object and it returns 456 since the value was overwritten with 456