SRSoumya Ranjan Mahantainsoumya2022.hashnode.dev·Jan 15, 2025 · 2 min read## Functions in TypeScript## Functions in TypeScript Functions are a fundamental building block in TypeScript, allowing you to encapsulate reusable code. TypeScript enhances JavaScript functions by adding type annotations, which help catch errors at compile time and provide ...00
SRSoumya Ranjan Mahantainsoumya2022.hashnode.dev·Jan 10, 2025 · 1 min readData Types in TypeScriptTypeScript provides several data types to work with. Here are the main types: # Primitive Types 1. **Boolean** ```typescript let isDone: boolean = false; Number let decimal: number = 6; let hex: number = 0xf00d; let binary: number = 0b1...00
SRSoumya Ranjan Mahantainsoumya2022.hashnode.dev·Apr 16, 2023 · 3 min readLets Get Started with Express JsWhat is Express Js Express is a node js web application framework that provides broad features for building web and mobile applications. It is used to build a single page, multipage, and hybrid web application. Features of Express JS Fast Server-Sid...00
SRSoumya Ranjan Mahantainsoumya2022.hashnode.dev·Dec 5, 2022 · 5 min readCss FlexboxThe flexbox is a whole module not a single property. It consist of group of properties. Some of them arer meant to set on flex container ( the parent element ) and some of them on child or flex items. you can use the same html code to play with diffe...00
SRSoumya Ranjan Mahantainsoumya2022.hashnode.dev·Nov 18, 2022 · 5 min readCss Box ModelCSS Box Model : When a webpage is being render ,By default the browser engine represent each elements as a rectangular Boxes which is by the CSS Box Model properties. CSS decides the sizes, positions and other properties like color, background, bord...00