Koushik Roykoushikroy.hashnode.dev·Sep 7, 2024Understanding Unsigned Integers in Solidity: From uint8 to uint256In Solidity, the programming language for Ethereum smart contracts, understanding data types is crucial for efficient and secure coding. One of the fundamental data types in Solidity is the unsigned integer, or uint. This blog post will explore the v...DiscussWeb3
Yvonne Aderogbaeviecoder.hashnode.dev·Aug 18, 2024A Guide to Data Types in JavaScriptIntroduction: Are you interested in learning about JavaScript for Web development, Mobile App Development, Server-side Development, and more? Well, understanding the datatypes is invaluable so let's begin. Terms to Know Variables are containers where...Discussdatatypes
Muhammad Fahad Bashirmfahadbashir.hashnode.dev·Aug 8, 20242. Comprehensive Overview of Data Types and Machine Learning ApproachesIn this second article of our AI and ML series, we will discuss the different types of data and machine learning methods. Understanding these concepts is essential, as data is the backbone of machine learning. The effectiveness of any model largely d...DiscussJourney of AI & ML - Navigation by M Fahaddatatypes
Sandhya KondmareforSandhya Kondmare's team blogkloudsan9.hashnode.dev·Aug 4, 2024Essential Python Data Types Explained for New ProgrammersPython ek versatile aur powerful programming language hai jo alag-alag data types ko support karti hai. Yeh blog post Python ke primary data types ke baare me batayegi, including complex numbers, strings, booleans, lists, tuples, dictionaries, aur se...Discussdatatypes
Babatunde Daramolaritechoiceacademy.com·Jul 24, 2024Master Data Types in JavaScript like a proUnderstanding data types is fundamental to writing clean, efficient code in JavaScript. Let’s take a look into this in a way that’s both fun and practical! The Primitives JavaScript has several primitive data types: Number, String, Boolean, Null, Und...Discuss·10 likesJavaScriptJavaScript
ritiksharmaaaritiksharmaaa.hashnode.dev·Jul 15, 2024DSA Week 1: Master Data Types, Loops, and Conditional Operators to Kickstart Your Coding Journey!Week 1-2: Fundamentals Day 1-2: Data Types Learning: int, float, boolean, string, char, long, double, bigint Practice: Exercises on each data type Day 3-4: Condition Operators Learning: if-else, switch statement, ternary operator Practice: Co...DiscussData Structure And AlgorithmsDSA
Ahmad Abass Koyangabasskoyang.hashnode.dev·Jul 14, 2024Data Types in JavaScriptJavaScript, like any programming language, uses various data types to store and manipulate data. Understanding these data types is crucial for writing effective and bug-free code. In this article, you'll learn the different data types in JavaScript, ...DiscussJavaScript For Beginnersjs
Vashishth Gajjarvashtech.hashnode.dev·Jul 13, 2024Chapter 2: The BasicsWelcome back to "Mastering JavaScript"! In Chapter 1, we explored the history and importance of JavaScript and set up our development environment. Now, it's time to dive into the basics of JavaScript. 2.1 Variables and Data Types Variables are used t...DiscussMastering JavaScriptJavaScript
Atharv Shindeatharvshinde.hashnode.dev·Jul 9, 2024Data Types and Variables in JavaIntroduction In this article, we will delve into one of the fundamental aspects of Java programming: data types and variables. Understanding these concepts is crucial for writing efficient and error-free code. What are Data Types? Data types specify ...DiscussJava Programmingdatatypes
Sayan Damsayan7.hashnode.dev·Jul 3, 2024Python3 - Part 3Data Types There are four primitive data types - String Integer Float Boolean String - A string is a sequence of characters enclosed within either single quotes (' ') or double quotes (" ") var1 = "Hello" print(f"Value of the variable is: {var1...DiscussPython