Kiprotich Dominickiprotichdominic.hashnode.dev·Feb 26, 2023Value Types and Reference TypesValue Types In JavaScript, a value type is also referred to as a primitive type. These are the most basic data types in the language and include: String Number Boolean Null Undefined Symbol (added in ES6) When a primitive value is assigned to...Discuss·39 readsJavascript 30 Concepts In 30primitive
Sean Grayseangraydev.hashnode.dev·Feb 7, 2023An Overview of JavaScript Data Types: Primitives & ObjectsJavascript has become my primary programming language as a new developer. It is powerful and provides developers with a variety of data types to work with. Here we’ll dive into the two categories of data types in JavaScript. Primitives The simplest d...Discuss·80 readsdata types
Divyanshi Rastogisuccesso.hashnode.dev·Aug 26, 2022Build-ins - Symbols and Protocols in ES6Primitive data types Symbols are new addition in ES6 to primitive data types. Previously numbers, strings, boolean, null, undefined were primitive data types. Symbol Symbol is just a unique identifier. Its most often used to uniquely identify propert...Discuss·1 like·77 readsJavaScript
Thaveesha Kuruppuarachchithaveeshak.hashnode.dev·Jul 1, 2022Ever Confused Between Objects References and Primitives?Even this is from very basics, there are still some sudden points which I got confused about the return value. If you ever expected a 58.2 as the output and the written program gave you "dinosaur" as the output, Yes you're in the right topic and I su...DiscussJava
IKUKOYI DAVIDafobaje.hashnode.dev·Jun 27, 2022Data Types In JavascriptA major leap stone to understanding javascript and eventually other frameworks is by understanding the basics which is the data types. Data types in javascript are classifed into two groups which are PRIMITIVE TYPES REFERENCE TYPES Primitive types ...Discuss·2 likes·83 readsdata types
Vipul Vishwakarmavipulvishwakarma.hashnode.dev·Jun 16, 2022! Everything in JavaScript is an ObjectProgramming languages all have built-in data structures, but these often differ from one language to another. There is a lot of confusion out there as to whether JavaScript is an Object-Orientated programming (OOP) language or a functional language. ...Discuss·12 likes·202 readsJavaScript