Anmol singhjavascripts.hashnode.dev·Dec 19, 2024Data Types in JavaScriptJavaScript is a versatile programming language that supports multiple data types. These data types are essential for storing and manipulating different kinds of information in your code. Primitive Data Types JavaScript has seven primitive data types:...data types
Amitabh soniamitabhdevops.hashnode.dev·Dec 19, 2024Day-15 of #90DaysOfDevOpsBasics of Python for DevOps Engineers Welcome to Day 15 of my #90DaysOfDevOps journey! Today, we dive into Python basics, covering its installation across various operating systems and a detailed look at its built-in data types. What is Python? Pyth...Devops
Ali Rıza Şahinarsahin.hashnode.dev·Dec 16, 20241) Basic Syntax & Data TypesAs https://roadmap.sh/java suggests, we’re going to start from the basic syntax and data types in Java. Java is mainly an object oriented language, which means we’re mostly going to utilize objects for our program logic. Basic Syntax When writing a ...Learning Javajava-syntax
Ahamad Basha NSintro-to-c-net-core.hashnode.dev·Dec 5, 2024Variables and Data Types in C#Variables A variable is a named storage location in memory that holds a value. In C#, you must declare a variable before using it. data_type variable_name; Data Types C# has a rich set of data types to represent different kinds of data. 1. Value Type...reference datatypes
Vibhas Thakurdesaicodotics.hashnode.dev·Nov 28, 2024Playing with data types...The article provides an overview of data types in C, highlighting primary types such as integers, floating-point numbers, and characters, along with derived types like arrays, pointers, structures, and unions. It also explains the characteristics and...bigining
gayatri kumargeekee.hashnode.dev·Oct 28, 2024Understanding Data: Types That Matter!In JavaScript, data types are essential for defining the kind of information that can be stored and manipulated within your code. Understanding data types is crucial because it helps you make decisions about how to use variables, control flow, and me...50 likesWeb Developmentjs
Oluwatosin Oghenewaire Thompsongoninja.hashnode.dev·Oct 27, 2024Variables, Constants, and Values Guide in GolangWhen starting with Go, it is important to learn the fundamentals. Variables, constants, and values form the building blocks for all Go programs, allowing you to store and manipulate data as you build applications. Mastering these concepts is essentia...Beginner's Guide to Golang: Start Coding with Confidencevariables
Kelvin Ugwutechcomm.hashnode.dev·Oct 17, 2024Understanding Python Data Types: A Complete OverviewIf you're completely new to Python, this guide will introduce you to the core concept of Python data types. For seasoned programmers, it's a quick refresher on the fundamentals. So grab a cup of coffee and let's dive into the world of Python data typ...1 likePython
Vaishnavi Dwivedivaishd.hashnode.dev·Oct 9, 2024Chapter 2: Basics in JavaIn Java, understanding the basic building blocks such as data types is fundamental to developing algorithms. Let's dive into the two main categories of data types in Java: Primitive and Non-Primitive. 1. Data Types Java is a strongly-typed language, ...Learn DSA - JAVAControlFlow
Arnav Singhpythonfornoobs.hashnode.dev·Oct 7, 2024Python Programming Basics: Statements, Comments, and Data TypesWhen learning Python, understanding the core building blocks like statements, comments, variables, and data types is essential. These basics serve as the foundation for writing effective and efficient Python code. In this article, we’ll break down ea...11 likesPython for NoobsPython-Statements