© 2023 Hashnode
#datatypes
Introduction: JavaScript is a versatile programming language that offers flexibility and convenience when it comes to handling data types. However, this flexibility can sometimes lead to unexpected be…
Introduction: JavaScript is a versatile programming language that offers a wide range of data types to store and manipulate values. Understanding these types is crucial for writing effective and effic…
Data refers to the values or information that is processed by a computer program. In computer science, data types refer to the various types of data that can be used in programming languages, each wit…
Python is a high-level, interpreted programming language that is easy to learn and widely used for web development, data analysis, artificial intelligence, and scientific computing. Python supports se…
Solidity is a contract-oriented, high-level programming language for implementing smart contracts. Solidity is highly influenced by C++, Python, and JavaScript and has been designed to target the Ethe…
As a new Elixir programmer, I was surprised to learn about a fundamental data type called atoms that I had never encountered in other programming languages. Atoms are a unique data type in Elixir that…
In JavaScript, data types are used to represent different kinds of values that can be manipulated by the program. There are seven basic data types in JavaScript: 1) Undefined 2) Null 3) Boolean 4) Num…
Day 6 Tuple : Tuple is an in-built data type in python and is used to collect objects, by separation of commas. Tuples are mutable. We use the '( )' operator to denote a tuple Indexing is the same…
Day 5 String : The string is an in-built data structure in python, which is an immutable data type, that is a sequential collection of characters. Because String is an immutable data type so we cannot…
DAY 2: In this blog, you will get to know about the basic data types of python. DATA TYPESData types are nothing but the classification of the data items in python. Like by using data types, we get to…