Anjan kumar Sharmaanjansharma.hashnode.dev·Jul 8, 2024AutoBoxing and Unboxing In JavaData types in java Java has two categories of data types: primitive and reference. Primitive types are the basic types that store values directly in memory, such as int, char, boolean, and so on. Reference types are the types that store references to...43 readsautoBoxingAndUnboxing
Anjan kumar Sharmaanjansharma.hashnode.dev·Jul 8, 2024Wrapper classesJava has two categories of data types: primitive and reference. Primitive types are the basic types that store values directly in memory, such as int, char, boolean, and so on. Reference types are the types that store references to objects in memory,...#BoxingUnboxing
Saseek Azmisaseek.com·Jan 10, 2024Autoboxing in JavascriptAuto-boxing is the process in JavaScript where a primitive data type is automatically converted to its corresponding object wrapper when you try to access properties or methods that are specific to objects. This process allows primitives to behave li...61 readsJavaScript
mahi samiasamyscode.hashnode.dev·Sep 6, 2023Demystifying JavaScript's Behavior with Primitives and ObjectsHave you ever wondered why JavaScript sometimes treats primitive values like objects? Let's dive into this intriguing behavior and uncover how JavaScript seamlessly combines primitives and objects. Part 1: The Mystery of Strings In this simple exampl...5 likes·36 readsJavaScript