KKKartikey Katyalintech-jargons-in-gen-ai.hashnode.dev路Apr 8, 2025 路 5 min readDecoding AI Tech Jargons with Chai 馃嵉Transformer is a neural network architecture introduced in the seminal 2017 paper "Attention is All You Need" that has fundamentally changed artificial intelligence approaches. This architecture powers leading language models like GPT, Llama, and Gem...00
KKKartikey Katyalinoknbh.hashnode.dev路Feb 26, 2025 路 3 min readProxy in JSWhat is a Proxy in JavaScript? A Proxy object wraps another object and allows us to control its behaviour. We can intercept fundamental operations like property access get, property assignment set, and even method calls. Think of it as a gatekeeper t...00
KKKartikey Katyalinoknbh.hashnode.dev路Feb 23, 2025 路 10 min readPrototype and Inheritance in JSIn programming, inheritance refers to passing down characteristics from a parent to a child so that a new piece of code can reuse and build upon the features of an existing one. JavaScript implements inheritance by using objects. Each object has an i...00
KKKartikey Katyalinoknbh.hashnode.dev路Feb 15, 2025 路 3 min readArrow Function in JSAn arrow function expression is a compact alternative to a traditional function expression, with some semantic differences and deliberate limitations in usage: Arrow functions don't have their own bindings to this, arguments, or super, and should no...00
KKKartikey Katyalinoknbh.hashnode.dev路Feb 15, 2025 路 2 min readFunction Declaration vs Function ExpressionWhat is Function Declaration ? A Function Declaration is a way of defining a function in programming . It tells the compiler function name , return type and parameter before it is used It allows the function to be called before its actual definition ...00