Abu Sayed
Musician | Singer | Lyricist | Composer | Music Producer | Web | Game | XR & Blockchain Developer
Tag Archives: types
Kind Protected GroupBy In TypeScript

Be at liberty to learn this on my blog! Lodash’s groupBy I might wager in case you have a sizeable Javascript/Typescript codebase you probably are utilizing lodash someplace in there. Whereas Javascript has gotten extra “batteries included” over the previous few years, lodash nonetheless has many good features for manipulating arrays/objects. One such perform is…
Graphs and Sorts of Graphs🔥

Hi there Everybody👋. It’s my first time running a blog. I really like to write down about programming and development. Right here is my LinkedIn Profile. Let’s Join https://www.linkedin.com/in/ritika-khanduri/ Hope you’ll prefer it✨ So Let’s Begin the Journey with the Subject: – GRAPHS What’s Graph and Why is it necessary to comprehend it?🤔 The graph…
Varieties of Steganography strategies which are used for hiding confidential information.

** Are the pictures actually secure? ** Steganography, based on Wikipedia, is the follow of concealing a message inside one other message or a bodily object. In computing/digital contexts, a pc file, message, picture, or video is hidden inside one other file, message, picture, or video. The phrase steganography comes from Greek steganographia, which mixes…
React Tips Miniseries 7: How you can setState for various knowledge varieties

React Mini Series (8 Part Series) 1 React Tricks Miniseries: Series Intro 2 React Tricks Miniseries 1: How to set up your react folder structure … 4 more parts… 3 React Tricks Miniseries 2: How to create custom hooks in 1 minute 4 React Tricks Miniseries 3: How to setup Routes 5 React Tricks Miniseries…
Variables, Information varieties, Operators

ozgaruvchilar nomining umumiy qoidalari: Ismlar, harflar, raqamlar va unc bolishi mumkin ismlar harf yoki unde bilan bolinishi kerak Ismlar katta-kichikligiga sezgir (myVar va myvai nomlarida boshliqlar bolishi mumkin emas) Malumotning asosiy turlari Malumotning turi ozgaruvchi saqalaydigan hajmi va turini belgilaydi Malumotning turi Hajmi tavsifi boolean 1 bayt rost yoki yolgon qiymatlarini saqalaydi char esa 1…
Notes on Superior TypeScript: Runtime Validations

Notes on Advanced TypeScript (2 Part Series) 1 Notes on Advanced TypeScript: Transforming Types 2 Notes on Advanced TypeScript: Runtime Validations Introduction These notes ought to assist in higher understanding superior TypeScript subjects and may be useful when needing to lookup up tips on how to leverage TypeScript in a particular scenario. All examples are…
typeof and lookup kind in typescript

The typeof key can be utilized to extract kind from an current information const person = { title: “Rubin”, age: 15, handle: “Kathmandu” } kind UserType = typeof person // {title: string,age:quantity,handle: string} Enter fullscreen modeExit fullscreen mode -Search for sorts are used to extract a portion from a fancy kind and create a brand…
Cryptocurrency Pockets and its varieties

Hey Guys, Hope all are doing good. Nice! At this time I give you a brand new subject, i.e. Cryptocurrency Wallets. We are going to see what number of forms of wallets are there and the way it’s saved. So, let’s begin then 🙂 Earlier than beginning this, I assume you all know some fundamentals…
Typescript Tip: Safer capabilities with branded varieties.

Think about you’ve a perform like this one: interface Put up { id: quantity title: string } export perform getPosts(web page: quantity): Put up[] { // carry out some question to return posts from a database // … // … return [] } Enter fullscreen modeExit fullscreen mode getPosts accepts a web page argument and…
Infer varieties from objects and arrays with typescript

Motivación Typically once we are utilizing typescript we might want to use the thing’s keys or the thing’s values as a sort, even some instances we have to use the values in an array as a sort as properly. What I would like with this put up is to elucidate how one can do it…