Data types of javascript summary | chai aur

แชร์
ฝัง
  • เผยแพร่เมื่อ 19 ก.ย. 2024
  • Visit chaicode.com for all related materials, community help, source code etc.
    github.com/hit...

ความคิดเห็น • 619

  • @ankita-vz4rb
    @ankita-vz4rb ปีที่แล้ว +667

    Return type of variables in JavaScript
    1) Primitive Datatypes
    Number => number
    String => string
    Boolean => boolean
    null => object
    undefined => undefined
    Symbol => symbol
    BigInt => bigint
    2) Non-primitive Datatypes
    Arrays => object
    Function => function
    Object => object

    • @rahulkrn5974
      @rahulkrn5974 ปีที่แล้ว +4

      Tq

    • @rupeshjadhav943
      @rupeshjadhav943 11 หลายเดือนก่อน +10

      When you learn further prototype, function also acts as a object. Object is the parent one.

    • @RedSpade01
      @RedSpade01 9 หลายเดือนก่อน +3

      @@rupeshjadhav943 as sir said, it is basically object function

    • @dfikb
      @dfikb 6 หลายเดือนก่อน +3

      @ankita-vz4rb tum bohot mast kaam karta ha maksud bhai

    • @Anubhavkumar2103
      @Anubhavkumar2103 6 หลายเดือนก่อน +1

      thanks man :)

  • @promahbubul
    @promahbubul ปีที่แล้ว +206

    JavaScript is a dynamically typed language. This means that variable types are determined at runtime, and you do not need to explicitly declare the type of a variable before using it. You can assign different types of values to a variable during its lifetime.
    For example, in JavaScript, you can do the following:
    let x = 10; // x is now a number
    x = "Hello"; // x is now a string
    x = true; // x is now a boolean
    On the other hand, statically typed languages require you to declare the variable's type explicitly, and the type checking is done at compile-time, before the code is executed.
    Languages like Java, C++, and TypeScript are statically typed, and they require you to specify the variable type explicitly when declaring them:
    int x = 10; // x is a variable of type int
    String name = "John"; // name is a variable of type String
    JavaScript's dynamic typing allows for more flexibility but can lead to potential runtime errors if not handled carefully. Static typing, on the other hand, provides better type safety at the cost of some initial verbosity and strictness.

    • @25Aadi25
      @25Aadi25 หลายเดือนก่อน +2

      nice gpt bhai

    • @RanitBag25
      @RanitBag25 หลายเดือนก่อน

      Python also

  • @ankushladani496
    @ankushladani496 ปีที่แล้ว +162

    JavaScript is a dynamically typed language. Because data type will automatically assigned at the time of compilation or code execution.

  • @alphacodehub
    @alphacodehub ปีที่แล้ว +66

    Primitive DataTypes:
    1.Number: Represents both integer and floating-point numbers. Example: 5, 3.14.
    2.String: Represents a sequence of characters enclosed in single or double quotes. Example: "Hello, world!".
    3,Boolean: Represents a binary value, either true or false, often used for conditional logic.
    4.Undefined: Represents a variable that has been declared but hasn't been assigned a value yet. Example: let x;.
    5.Null: standalone value it is represenataion of empty value it is special type and it is a object type. Example: let y = null;
    6.Symbol (ES6): it is mostly used used to find uniqnece.
    7.BigInt (ES11): Represents large integers that cannot be represented by the Number type.
    Refence (Object Data Types):
    1.Object: Represents a collection of key-value pairs (properties and methods). Example: { name: "John", age: 30 }.
    2.Array: Represents a list-like collection of values, indexed by numbers (integer indices). Example: [1, 2, 3, 4].
    3.Function: Represents a reusable block of code that can be invoked or called with arguments. Example: function add(x, y) { return x + y; }.
    4.Date: Represents dates and times.
    5.RegExp: Represents regular expressions for pattern matching.
    lets talk about some Range of Primitive DataType:
    1.Number:
    Represents both integers and floating-point numbers.
    Typical Range: -9,007,199,254,740,992 (-2^53) to 9,007,199,254,740,992 (2^53) inclusive.
    Smallest Increment: 2^(-52).
    2.String:
    Represents a sequence of characters.
    No specific range limit, but practical limits depend on memory and system resources.
    3.Boolean:
    Represents true or false.
    Only two possible values: true and false.
    4.Undefined:
    Represents a variable that has been declared but hasn't been assigned a value.
    It has only one possible value: undefined.
    5.Null:
    Represents the intentional absence of any object or value.
    It has only one possible value: null.
    6.Symbol (ES6):
    Represents a unique and immutable value.
    No specific range limit.
    7.BigInt (ES11):
    Represents large integers that cannot be represented by the Number type.
    The range is practically unlimited and depends on available memory.

  • @developer_vikash
    @developer_vikash ปีที่แล้ว +63

    Thank you sir for your guidance and hard work here is your gift
    * Premitive Datatypes
    Type typeof
    i) Number number
    ii) String string
    iii) Boolean boolean
    iv) Bigint bigint
    v) Symbol symbol
    vi) Null object
    vii) Undefined undefined
    * Non-Premitive OR Referance OR Object datatype
    Type typeof
    i) Object object
    ii) Array object
    iii) Function function(object)
    This is my research and output if anythig is wrong please feel proud to reply me
    Thank you sir

  • @VanisTastyTreat
    @VanisTastyTreat ปีที่แล้ว +36

    Primitive datatypes:
    String - string
    Number - number
    Boolean - Boolean
    Null - object(****)
    Undefined - undefined
    BigInt - bigint
    Non-primitive datatypes:
    Array - object
    Function - function(object)
    Object - object

  • @jerrysworld5495
    @jerrysworld5495 11 หลายเดือนก่อน +23

    when you say "sirf padhna thode hai, interviews bhi crack karne hain" that thing makes your JS tutorials different and unique from others. Although I am writing this comment in English but I just...can't tell you how much this Hindi tutorials are helping me as well as thousand others #ThankYouHiteshSir❤❤

  • @hksworld2797
    @hksworld2797 8 หลายเดือนก่อน +5

    JavaScript is a dynamically typed language, which means that data types of variables are determined by the value they hold at runtime and can change throughout the program as we assign different values to them.
    Thank you sir for your Hard work and guidance ❤

  • @peacecode7
    @peacecode7 ปีที่แล้ว +24

    Sir at 14:18, bigNumber ka value isliye undefined aaya kyuki aapne uski declaration ko hi comment kr diya tha 😅
    When I tried that declaration myself, it shows the type to bigint 👨‍💻

    • @anuragsuryawanshi4177
      @anuragsuryawanshi4177 ปีที่แล้ว +1

      I'm still confused here that why JS doesn't throw us an error like variable not defined or not initialised

    • @peacecode7
      @peacecode7 ปีที่แล้ว +2

      @@anuragsuryawanshi4177 because js is duck typed or loosely typed language

    • @deepakshukla1810
      @deepakshukla1810 11 หลายเดือนก่อน

      @@peacecode7 because bignumber was not defined

    • @peacecode7
      @peacecode7 11 หลายเดือนก่อน +3

      @@deepakshukla1810 it was defined, but when sir was commenting out console.logs , in order to provide a cleaner output, he mistakenly commented the declaration of bigNumber.

  • @tamalmajumdar3398
    @tamalmajumdar3398 5 หลายเดือนก่อน +2

    There are mainly 2 types of datatypes :
    1. Primitive ( call by value = copy version ):
    - string => string
    - number => number
    - Boolean => boolean
    - null => object
    - undefined => undefined
    - symbol => symbol
    - Bigint => Bigint
    2. Non-Primitive ( reference type ):
    - Array => object
    - Object => object
    - Function => Object Function
    3. JavaScript is "Dynamically typed language" because all type checks are being performed during Runtime .

  • @rupeshshah9939
    @rupeshshah9939 9 หลายเดือนก่อน +2

    Sir When you said this "sirf padhna thode hai, interviews bhi crack karne hain" hits different and motivate to learn from you. #thankyouhiteshsir for making such valuable Javascript course playlist

  • @softheartpeople
    @softheartpeople 11 หลายเดือนก่อน +4

    There are two categories of data types:
    1)Primitive: These are call-by-value. The types of primitive data types include String, Number, Boolean, Null, Undefined, Symbol, and BigInt. Note that Symbols uniquely identify variables, even if two variables have the same data and data type. Primitive variables datatype is same but null datatype is object
    2) Non-primitive: These are call-by-reference. The types of non-primitive data types are Array, Object, and Function. The data type for these is 'object,' but for functions, they return a data type of 'function,' though they also have an object data type.

  • @SunillBohara
    @SunillBohara 7 หลายเดือนก่อน +2

    At 13:57, You commented the variable declaration, that's why the typeof of BigInt value is showing 'undefined' because it couldn't find the variable. The actual typeof value of any BigInt variable is bigint and not undefined.

  • @sanjayrajpoot1807
    @sanjayrajpoot1807 8 หลายเดือนก่อน +2

    Really sir this series is awesome from the courses thanks your explanation like this way admirable things that you are doing.

  • @BitFire007
    @BitFire007 6 หลายเดือนก่อน +1

    "Chai aur Code, you've made JavaScript feel like a breeze. Your passion for teaching shines through!"

  • @tushar5426
    @tushar5426 11 หลายเดือนก่อน +4

    JavaScript is a dynamically typed language, which means that data types of variables are determined by the value they hold at runtime and can change throughout the program as we assign different values to them.
    Thank you so much sir for these amazing tutorials 🥰🙌

  • @lakshmankumar9228
    @lakshmankumar9228 ปีที่แล้ว +18

    Type and typeof return value
    number - number
    string - String
    boolean - boolean
    symbol - symbol
    bigint - bigint
    undefined - undefined
    null - object
    array - object
    object - object
    function - function

    • @manthanharale3877
      @manthanharale3877 ปีที่แล้ว +2

      but function is not only function it is object-function

  • @eco-wonders
    @eco-wonders 6 หลายเดือนก่อน

    ab tak ka sabse shandar channel ,apka padhane ka tareeka real me best h bhaiya

  • @Vicky-Bhutta
    @Vicky-Bhutta หลายเดือนก่อน

    Such a great learning with a great teacher love you sir from Pakistan Multan ❤️❤️❤️

  • @DevAbhinav
    @DevAbhinav 7 หลายเดือนก่อน +1

    Javascript is dynamically typed language which means agar program me aage jakar variables ki value ka datatype change hota hai toh Javascript variables ke value ke current datatype ko hi valid manegi.
    Jo mujhe samaj aaya vo kuch aisa tha.

  • @vaibhavilohani3421
    @vaibhavilohani3421 9 หลายเดือนก่อน +1

    JavaScript is a dynamically typed language, which means that data types of variables are determined by the value they hold at runtime and can change throughout the program as we assign different values to them.
    Return types of variables in js:
    Primitive datatypes:
    Number =>number
    String => string
    Boolean => boolean
    null => object
    undefined => undefined
    Symbol => symbol
    BigInt => bigint
    Reference (Non primitive data types):
    Array => object
    Object => object
    Function => function

  • @ArslanAhmed
    @ArslanAhmed ปีที่แล้ว

    JavaScript ek "dynamically typed" language hai, yani ki isme variable ki data type runtime (execution time) par decide hoti hai, aur aap ek variable mein alag-alag data types ke values store kar sakte hain. JavaScript mein aap ek variable ko pehle number, phir string, aur phir boolean ke roop mein istemal kar sakte hain, aur interpreter runtime par type checks karta hai.

  • @mdtausifahmed6205
    @mdtausifahmed6205 ชั่วโมงที่ผ่านมา

    primitive function
    string - > string
    boolean -> boolean
    number -> number
    null -> object
    undefined - > undefined
    symbol -> symbol
    non primtive type
    object -> object
    function -> object -function
    arrays -> object

  • @hitendrasingh01
    @hitendrasingh01 10 หลายเดือนก่อน +3

    Primitive Data Types:
    Number -> Example: 42
    String -> Example: "Hello, World"
    Boolean -> Example: true
    null -> Example: null
    undefined -> Example: undefined
    Symbol -> Example: Symbol("unique")
    Non-Primitive Data Types:
    Array -> Example: var fruits = ['apple', 'banana', 'cherry']
    Function -> Example:
    function greet(name) {
    console.log("Hello, " + name + "!");
    }

  • @that_confused_soul23
    @that_confused_soul23 11 หลายเดือนก่อน +1

    for typeof operator:for non primitive datatypes:
    arr, object:object
    and for function :object function
    for primitive datatype:
    Number => number
    String => string
    Boolean => boolean
    null => object
    undefined => undefined
    Symbol => symbol
    BigInt => bigint

  • @tanvirahammadjoy
    @tanvirahammadjoy 10 วันที่ผ่านมา

    JavaScript is a dynamically typed language, meaning variable types are determined at runtime rather than being explicitly declared. This allows variables to change types during execution, providing flexibility but potentially leading to runtime errors if not managed carefully.
    You don’t have to declare a variable’s type when you create it. For example, you can assign a value to a variable without specifying whether it’s a number, string, or any other type
    let myVariable = 10; // Initially a number
    myVariable = "Hello"; // Now it's a string
    In a statically typed language (like Java or TypeScript), you would need to declare the type of the variable explicitly, and it wouldn’t change during the program’s execution
    int myVariable = 10; // Must always be an integer

  • @WorldReaction-kg6nk
    @WorldReaction-kg6nk 7 หลายเดือนก่อน +1

    Return type of variables in JavaScript
    1) Primitive Datatypes
    Number => number
    String => string
    Boolean => boolean
    null => object
    undefined => undefined
    Symbol => symbol
    BigInt => bigint
    2) Non-primitive Datatypes
    Arrays => object
    Function => function
    Object => object

  • @AbhishekKumar-nz9dn
    @AbhishekKumar-nz9dn ปีที่แล้ว +1

    it is an dynamically typed language because the value of the variables is checked at the run time and may change further according to needs

  • @annupoddar249
    @annupoddar249 10 หลายเดือนก่อน +1

    --> Primitive Datatypes (call by value)
    1. Number -> number
    2. String -> string
    3. Undefined -> undefined
    4. Null -> object
    5. BigInt -> bigint
    6. Boolean -> boolean
    7. Symbol -> symbol
    --> Non Primitive Datatypes (call by reference)
    1. Object -> object
    2. Array -> object
    3. Function -> function

  • @moizqureshi4577
    @moizqureshi4577 หลายเดือนก่อน

    Hi Hitesh,
    I noticed a small mistake in the video. You commented out the variable bigNumber, which caused it to show undefined when you checked the datatype. When you check the datatype of an undefined variable, it shows undefined. If you hadn't commented it out, you would have seen Bigint as the datatype for bigNumber.
    Despite this minor error, I have to say I respect the effort you put into this course. I'm really enjoying it and appreciate the detailed explanations. Thank you for offering such a comprehensive JavaScript course for free!

  • @yogeshkumarpatil591
    @yogeshkumarpatil591 9 หลายเดือนก่อน

    Thank you for making such a beautiful javascript tutorial. Because You teach the actual javascript which is necessary for actual production development need. Very Very thank you. I will share your channel as much as possible to everyone. I really like your teaching style and I aslo need that type of javascript teacher. God bless you.

  • @rkrohan...1176
    @rkrohan...1176 10 หลายเดือนก่อน +1

    JavaScript is a dynamically typed language. Because data type will automatically assigned at the time of compilation or code execution. TX sir....

  • @avtheprowd
    @avtheprowd 9 หลายเดือนก่อน +1

    Hello ji sir, agar aap variable ( talking about bigNumber example ) ko comment karke typeof function use karoge toh undefined hi aayega! Ji, Namaskar sir ji ..!

  • @sekharendudey7923
    @sekharendudey7923 10 หลายเดือนก่อน +1

    Dynamically Typed because the datatype needs not to be mentioned while initializing, also the datatype of variable is determined during the runtime

  • @amit_c
    @amit_c ปีที่แล้ว +2

    JavaScript is a dynamically typed language, which means that data types of variables are determined by the value they hold at runtime and can change throughout the program as we assign different values to them.

  • @AsAOptionsTrader
    @AsAOptionsTrader 11 หลายเดือนก่อน +1

    Sir, at 14:08 you comment out bigInt, line no.17 thats why the result of typeof bigNumber came undefined.

  • @Daani213
    @Daani213 5 หลายเดือนก่อน

    Once again your way of teaching extra ordinary sir .

  • @iswinnyx
    @iswinnyx 5 หลายเดือนก่อน +1

    JavaScript is a dynamically typed language, which means that data types of variables are determined by the value they hold at runtime and can change throughout the program as we assign different values to them...

  • @syedabdullahjamil2688
    @syedabdullahjamil2688 10 หลายเดือนก่อน +1

    Javascript is a dynamic typing language. When you declare a variable, you do not need to specify what type this variable is

  • @Instrumentation010
    @Instrumentation010 9 หลายเดือนก่อน

    Really you made this interesting, I have completed JS course 3 times , 2 from TH-cam ane 1 is paid course, but still I am blank, but now I feel confident in JS, so thanks you

  • @abhisheknavgan1285
    @abhisheknavgan1285 ปีที่แล้ว +4

    // primitive datatypes
    // 1. string
    // 2. number
    // 3. boolean
    // 4. null
    // 5. undefined
    // 6. symbol
    // 7. bigint
    // non-primitive / Refference datatypes
    // 1. arrays
    // 2. objects
    // 3. functions

  • @Levi-iu7hq
    @Levi-iu7hq 4 วันที่ผ่านมา

    Primitive datatypes: Number(number), Bigint(bigint), Boolean(boolean), String(string), Null(object), Undefined(undefined), Symbol(function)
    Non-primitive datatypes: Array(object), Object(object), Function(function)

  • @vivektiwari6200
    @vivektiwari6200 ปีที่แล้ว +2

    finally wait is end. Very helpful lecture, Hope content will continue. ☑☑☑☑

  • @udayofficial3879
    @udayofficial3879 7 วันที่ผ่านมา

    1) Primitive Datatypes
    Number => number
    String => string
    Boolean => boolean
    null => object
    undefined => undefined
    Symbol => symbol
    BigInt => bigint
    2) Non-primitive Datatypes
    Arrays => object
    Function => function
    Object => object

  • @ims-030-priyanshudave3
    @ims-030-priyanshudave3 11 หลายเดือนก่อน +1

    dynamically typed language
    JavaScript is a dynamically typed language, which means that data types of variables are determined by the value they hold at runtime and can change throughout the program as we assign different values to them

  • @DevAbhinav
    @DevAbhinav 7 หลายเดือนก่อน +1

    Primitive Datatypes ka return type
    String => String
    Number => Number
    Boolean => Boolean
    Null => Object
    Undefined => Undefined
    Symbol => Symbol
    BigInt => BigInt
    Reference Datatypes ka return type
    Array => Object
    Object => Object
    Function => Function

  • @AhmadUmarUmar-p6s
    @AhmadUmarUmar-p6s หลายเดือนก่อน

    JavaScript is a dynamically typed language. This means that variable types are determined at runtime, and you do not need to explicitly declare the type of a variable before using it. You can assign different types of values to a variable during its lifetime.
    For example, in JavaScript, you can do the following:
    let x = 10; // x is now a number
    x = "Hello"; // x is now a string
    x = true; // x is now a boolean
    On the other hand, statically typed languages require you to declare the variable's type explicitly, and the type checking is done at compile-time, before the code is executed.
    Languages like Java, C++, and TypeScript are statically typed, and they require you to specify the variable type explicitly when declaring them:
    int x = 10; // x is a variable of type int
    String name = "John"; // name is a variable of type String
    JavaScript's dynamic typing allows for more flexibility but can lead to potential runtime errors if not handled carefully. Static typing, on the other hand, provides better type safety at the cost of some initial verbosity and strictness.

  • @mradulsonare2458
    @mradulsonare2458 4 หลายเดือนก่อน +2

    sir aapne galat statement ko comment out kar diya isiliye bigint ka data type undefined bata raha tha wo koi special case nahi tha.

  • @zishanahmad8248
    @zishanahmad8248 20 วันที่ผ่านมา

    Primitive :- string => string , number=> number, boolean=> boolean, null=> object, undefined=> undefined, symbol=> symbol , bigint=> bigint ......Non-primitive:- array=> object, object=> object, function=> object function

  • @hafizabdulmunnan9535
    @hafizabdulmunnan9535 29 วันที่ผ่านมา

    JavaScript is a dynamic programming language.
    Dynamic Typing: Variables in JavaScript are not bound to a specific data type. You can assign a value of any type to a variable, and you can reassign a different type to the same variable without any issues.

  • @Zareena_Iqbal
    @Zareena_Iqbal 10 หลายเดือนก่อน

    Toh saral shabdon mein kaha jaye toh, JavaScript ek dynamically typed language hai, jahan variable types runtime par decide hote hain. Statically typed languages mein aapko variable types ko declare karna padta hai, aur ye types compile-time par check hote hain.

  • @hamimbsf
    @hamimbsf 2 วันที่ผ่านมา

    String - string
    Number - number
    Boolean - Boolean
    Null - object
    Undefined - undefined
    BigInt - bigint
    Array - object
    Function - function(object)
    Object - object

  • @nehabansal370
    @nehabansal370 6 หลายเดือนก่อน

    Categorisation of data types is on the basis of, how the data is stored in memory and how it is accessed.
    Primitive is call by value, means if you assign one variable to another then you don't get the reference of data from memory, you get the copy of the value and if you make any changes in second variable it will not change anything in original data.
    Reference(Non-primitive) here you get the reference of the data from memory and thus refers to same data, if any changes made to data, it will reflect in all the variables referring to it.

  • @bablishil3651
    @bablishil3651 10 หลายเดือนก่อน +1

    Return Typeof Datatypes:
    Primitive Datatypes:
    string => string
    number => number
    Boolean => boolean
    Null => object
    undefined => undefined
    symbol => symbol
    bigInt => bigint
    Non - Primitives :
    Array => object
    Object => object
    Function => function

    • @adityagamingzone4677
      @adityagamingzone4677 2 หลายเดือนก่อน

      function ka datatype = function object h

  • @debiprasadmahakud7642
    @debiprasadmahakud7642 หลายเดือนก่อน

    1.primitive type
    number=>number
    string=>string
    boolean=>boolean
    symbol=>symbol
    null=>object
    undefined=>undefined
    bigint=>bigint
    2.non primitive type
    arrays=>object
    object=>object
    function=>function

  • @InformativeEducation1
    @InformativeEducation1 23 วันที่ผ่านมา

    JavaScript is a dynamic language. Because wo do not need to declare its data type.
    There are two type of Data type
    1) Permitve 2) Non Permitve
    Permitve Data Type
    Number = Number ;
    String = String :
    Boolean = True / False ;
    symbol => Use to Identify the Components or Variable ;
    Null => Have NO value ;
    Undefind => Mean you do not assign a value ;
    bigInt => Use for big Number ;
    2) Non Permitive
    Array => Array contain a collection of data on different index ;
    Object => object is a New version of Array. And it contain the data in collect with respect to its Key Point ;
    Function => Its return type is objectFunction

  • @_suraj.3x
    @_suraj.3x 6 หลายเดือนก่อน +1

    There are 2 data types in Js
    1. Primitives
    2. Reference (Non Primitives)
    Primitives:
    1. Number
    Example: let number = 100
    2. String
    Example: let string = "Namaskar"
    3. Boolean
    Example: let isPurchased = false
    4. Undefined
    Example: let subscribe;
    5. Null
    Example: let like = null
    6. Symbol
    Example: const share = ("100")
    7. BigInt
    Example: const number = 100000000000n
    Reference:
    1. Arrays
    Example: let objectArrays = [1,2,3]
    2. Objects
    Example: let video = {
    subscribed: true,
    like: true,
    share: false
    }
    3. Function
    Example: function sheryiansStudent() {
    canMakeAwesomeWebs: true
    }

  • @gauravmangal5191
    @gauravmangal5191 4 หลายเดือนก่อน

    number -> number
    string -> string
    bigInt -> bigInt
    boolean -> boolean
    undefined -> undefined
    null -> object
    symbol -> symbol
    function->object [object function]
    all other non-primitive datatypes -> object

  • @officeuse-q9t
    @officeuse-q9t 6 หลายเดือนก่อน

    JavaScript is a dynamically typed language, which means that data types of variables are determined by the value they hold at runtime and can change throughout the program as we assign different values to them

  • @aniketTale64
    @aniketTale64 8 หลายเดือนก่อน

    There are two types of data types in jS
    1- primitive data type &
    Return type Objects in js ------
    1) Number --> Number
    2) String --> string
    3) Boolean --> Boolean
    4) Bigint --> Bigint
    5) Null --> Object
    6) undefine ---> undefine
    7) Symbol --> Symbol
    2- non primitive data types
    1) Arrays --> Arrays
    2) Objects --> Objects
    3) Functions --> object Function

  • @AkbarAli-bt7xi
    @AkbarAli-bt7xi 10 หลายเดือนก่อน

    sir it is dynamic typed language because it assigned data type to a variable according to given value unlike typescript or c++ etc before declaring a variable we define its data type with a reserved word.

  • @gursaveksingh3457
    @gursaveksingh3457 7 หลายเดือนก่อน

    02:16 JavaScript data types can be categorized into primitive and non-primitive types.
    04:32 Primitive data types in JavaScript
    06:48 JavaScript data types
    09:04 JavaScript data types include numbers, booleans, null, and undefined
    11:20 Symbol and BigInt data types
    13:36 Arrays and objects are non-primitive types in JavaScript
    15:52 Using typeof function to find data types of variables
    18:02 The return type for all non-primitive types is object function.

  • @sairajbarve1276
    @sairajbarve1276 หลายเดือนก่อน

    Return type of variables in Js
    1) Primitive Datatype
    String => string
    Number => number
    Boolean => boolean
    Null => object
    Undefined => undefined
    Symbol => symbol
    BigInt => bigint
    2) Non-primitive Datatype
    Array => object
    Object => object
    Function => function

  • @mr.hunterr3012
    @mr.hunterr3012 8 หลายเดือนก่อน

    02:16 JavaScript data types can be categorized into primitive and non-primitive types.
    04:32 Primitive data types in JavaScript
    06:48 JavaScript data types
    09:04 JavaScript data types include numbers, booleans, null, and undefined
    11:20 Symbol and BigInt data types
    13:36 Arrays and objects are non-primitive types in JavaScript
    15:52 Using typeof function to find data types of variables
    18:02 The return type for all non-primitive types is object function.
    Crafted by Merlin AI.

  • @HariPrabodham_Spirit
    @HariPrabodham_Spirit 7 หลายเดือนก่อน

    JavaScript is a dynamic language. This means that variables in JavaScript are not explicitly typed, and their types can change during the execution of a program. Additionally, JavaScript allows for features like dynamic typing, where variables can hold values of any type, and dynamic evaluation, where code can be constructed and executed at runtime.

  • @user-dz7ef9xl6i
    @user-dz7ef9xl6i 8 หลายเดือนก่อน

    JavaScript is a dynamically typed language
    Return type of variables in JavaScript
    Primitive Datatypes
    Number => number
    String => string
    Boolean => boolean
    null => object
    undefined => undefined
    Symbol => symbol
    BigInt => bigint
    Non-primitive Datatypes
    Arrays => object
    Function => function
    Object => object

  • @bhuvnesh4752
    @bhuvnesh4752 6 หลายเดือนก่อน

    aaj naya sikha ki primitive call by value hote hai aur non primitive call by reference hote hai
    thank you sir

  • @connectwithehsan-he6bt
    @connectwithehsan-he6bt 6 หลายเดือนก่อน

    return type of variable in javascript
    ---primitive datatypes---
    number =>number;
    string => string;
    null => object;
    boolean => boolean;
    bigInt => null;
    undefined => undefined;
    symbol => symbol;
    ---non primitive---
    array => object;
    function => function;
    object =>object;

  • @kashifsamoo
    @kashifsamoo 2 หลายเดือนก่อน

    JavaScript is a dynamically typed language, which means that variables in JavaScript can hold values of any type, and the type of a variable can change at runtime. This flexibility allows for more fluid and adaptable programming, where you don't have to declare the type of a variable explicitly before using it.

  • @sydneysingh9704
    @sydneysingh9704 5 หลายเดือนก่อน

    JavaScript is a dynamically typed language.
    In a dynamically typed language like JavaScript, variable types are determined at runtime, not at compile time. This means that you don't have to explicitly declare the data type of a variable when you create it, and you can change the type of a variable by assigning a value of a different type to it during the execution of the program.

  • @mohankrishna6723
    @mohankrishna6723 3 หลายเดือนก่อน +1

    JS -Dynamically Typed, that helps in easy handling of data

  • @schizoo07
    @schizoo07 4 หลายเดือนก่อน

    String - string
    Number - number
    Boolean - boolean
    Null - object
    Undefined - undefined
    BigInt - bigint
    Symbol - symbol
    Array - object
    Function - function
    Object - object

  • @prathmeshyadav3988
    @prathmeshyadav3988 4 หลายเดือนก่อน

    Primitive Datatypes
    String -> string
    Number -> Number
    undefined - > undefined
    Boolean -> boolean
    Array -> Object
    Functions -> Function Object
    Object -> Object

  • @Raj-cy7ox
    @Raj-cy7ox 5 หลายเดือนก่อน

    JavaScript is a dynamically type language because in this language type of a variable is known at "runtime". So we don't need to specify type of varialbe when we declare it .

  • @AmanKhan-lj3wh
    @AmanKhan-lj3wh 3 หลายเดือนก่อน

    How datatypes are treated by typeof operator
    Pmitive
    Number => number
    String => string
    Boolean => boolean
    null => object // js implementation uses a type tag to indicate the type of value and type tag for objects is 0 and consequently null
    is used to represent a null pointer therefore the type tag assigned to null was 0, which is same as an object and hence null is treated as an object by typeof operator.
    undefined => undefined
    Symbol => symbol
    BigInt => bigint
    Non-Primitive
    Arrays => object
    Function => function
    Object => object

  • @CodeWithBot
    @CodeWithBot หลายเดือนก่อน

    JavaScript is a dynamic language and not static, which means that variables can hold values of different types during runtime.

  • @SuryaKarigar
    @SuryaKarigar 7 หลายเดือนก่อน

    6:35, JAVASCRIPT is a dynamically typed language as the types are defined at the runtime, and can be changed during execution.

  • @niharnaikwadi5119
    @niharnaikwadi5119 7 หลายเดือนก่อน

    1. Primitive Datatypes
    Number -> number
    String -> String
    Boolean -> Boolean
    null -> object
    Undefined -> Undefined
    Symbol -> Symbol
    BigInt -> BigInt
    2. Non-Primitive Datatypes
    Arrays -> Objects
    Functions -> Function
    Object -> Object

  • @TejalGunjal-ce9os
    @TejalGunjal-ce9os 5 หลายเดือนก่อน

    JavaScript is dynamically typed. This means that variable types are determined at runtime, rather than being explicitly declared in the code. In JavaScript, a variable can hold different types of values at different points in the program's execution. This dynamic typing allows for flexibility but also requires careful attention to data types to prevent unexpected behaviors.

  • @jeetuiitwale
    @jeetuiitwale หลายเดือนก่อน

    02:16 JavaScript data types can be categorized into primitive and non-primitive types.
    04:32 Primitive data types in JavaScript
    06:48 JavaScript data types
    09:04 JavaScript data types include numbers, booleans, null, and undefined
    11:20 Symbol and BigInt data types
    13:36 Arrays and objects are non-primitive types in JavaScript
    15:52 Using typeof function to find data types of variables
    18:02 The return type for all non-primitive types is object function.

  • @TechieHeish1-bm2nd
    @TechieHeish1-bm2nd 2 หลายเดือนก่อน

    type and type of, for return value
    primitive data types:
    null - object
    undefined - undefined
    number - number
    string - string
    bigInt - bigInt
    boolean - boolean
    symbol - symbol
    non-primitive(reference type) :
    Array - object
    function - function(object-function, functional object)
    object - object

  • @TechieHeish1-bm2nd
    @TechieHeish1-bm2nd 2 หลายเดือนก่อน

    JavaScript is a dynamically typed language means the type of data initializations is implicitly (automatic - self defined) based on its inbuild standards, Explicitly means we are defining the whole, implicitly means, javascript itself decides which type of data.

  • @yasdox
    @yasdox 12 วันที่ผ่านมา

    Return type of variables in JavaScript
    1) Primitive Datatypes
    Number => number
    String => string
    Boolean => boolean
    null => object
    undefined => undefined
    Symbol => symbol
    BigInt => bigint
    2) Non-primitive Datatypes
    Arrays => object
    Function => function
    Object => object

  • @Areeshakhan-qu9ci
    @Areeshakhan-qu9ci 3 หลายเดือนก่อน

    JavaScript is a dynamic language and not static, which means that variables can hold values of different types during runtime.
    2 types of dataTypes
    1: Primitive
    *****7 types of Primitive DataTypes ****
    1: Number returns number
    2: Boolean returns boolean
    3: String returns string
    4: undefined returns undefined
    5: null returns Object
    6: bigint returns Bigint
    7: Symbol returns symbol
    2: Reference (Non-Primitive)
    1: Arrays returns object
    2: Function returns function
    3: Object returns object

  • @TasnimulFahim
    @TasnimulFahim 9 หลายเดือนก่อน

    Javascript is dynamic Language and datatypes returned for
    1. Primitive Datatypes:
    String = String
    Number = number
    Boolean = boolean
    Null = object
    Undefined = undefined
    Symbol = symbol
    bigInt = bigInt
    2. Non-Primitve
    Function = function (obj function )
    Array = object
    Object = object.

  • @user-kq5pk8kr8c
    @user-kq5pk8kr8c 11 หลายเดือนก่อน +1

    "Hey Chai or Code and Hitesh Choudhary, I'm on the edge of my seat in anticipation for the backend full series and DSA series on this channel! ☕💻 Your content is like the perfect blend of coding wisdom and the soothing essence of chai, and I can't wait to dive deep into these topics with your expert guidance. Keep brewing up those fantastic tutorials, and I'll keep sipping and coding along! 🚀🔥"

  • @multioramaenterprises6198
    @multioramaenterprises6198 25 วันที่ผ่านมา

    Return types of variables in JS
    1) Primitive Datatypes:
    Number => number
    String => string
    Boolean => boolean
    null => object
    undefined => undefined
    Symbol => symbol
    BigInt => bigint
    2) Non-primitive Datatypes
    Arrays => object
    Function => function
    Object => object

  • @vibhavjoshi1818
    @vibhavjoshi1818 6 หลายเดือนก่อน

    JavaScript is a Dynamically Typed Language. Because data types of the variable are determined by the value they hold at a runtime and it can be changed throughout the program.
    Primitive data types : String, Number, Boolean, null, undefined, Symbol, BigInt
    Reference type : Array, Object, Function

  • @vikashpandey3055
    @vikashpandey3055 8 หลายเดือนก่อน +1

    String = string
    number = number
    Boolean = boolean
    symbol = symbol
    bigInt = bigInt
    undefined = undefined
    null = object
    array = object
    function = function
    object = object

  • @nehabansal370
    @nehabansal370 6 หลายเดือนก่อน

    Javascript is dynamically typed language, which means the type of variable is determined by the value they hold at runtime and can be changed throughout the program as we assign different values to variable

  • @amirsohailansari5535
    @amirsohailansari5535 หลายเดือนก่อน

    Javascript is dynamically typed language which means that you don't have to specify the type of variables when you declare

  • @FarhanAli-iu9dp
    @FarhanAli-iu9dp 3 หลายเดือนก่อน

    null ka object aye ga ,function ka function aye ga ,string ka string,number ka number,undefined ka undefined aye ga

  • @deepmeaningpicture67
    @deepmeaningpicture67 2 หลายเดือนก่อน

    1) permitive data types
    number => number
    string => string
    boolen => boolen
    undefined => undefined
    null => object
    symbol => symbol
    bignit => bignit
    2) Reference data type
    Array => object
    object => object
    function => function

  • @ramankumar3776
    @ramankumar3776 4 หลายเดือนก่อน +1

    JavaScript has dynamically typed language each variable will be set dynamically during code execution.

  • @VishnuSinghRathore-s4v
    @VishnuSinghRathore-s4v หลายเดือนก่อน

    JavaScript is a dynamically typed language.
    Datatype in javascript :-
    1 . Primitive :- String, Number,BigInt,Boolean,Null, undefined, Symbol
    2.Non-premitive :- Array, Object,Function
    Return type of Datatype :-
    Console.log(typeof("Vishnu")) = String
    Number = number
    Boolean = Boolean
    Null = Object
    Undefined = undefined
    BigInt = undefined
    Array object = Object
    Function = object Function

  • @techcompany_
    @techcompany_ 6 หลายเดือนก่อน

    Primitive datatypes:
    String - string
    Number - number
    Boolean - Boolean
    Null - object(****)
    Undefined - undefined
    BigInt - bigint
    Non-primitive datatypes:
    Array - object
    Function - function(object)
    Object - object

  • @ShifaHayatkhan
    @ShifaHayatkhan 2 หลายเดือนก่อน

    Return type of different datatype in js
    1) Primitive Datatype
    Number=>number
    String => string
    Boolean => boolean
    null => object
    Undefined=> undefined
    symbol=> symbol
    BigInt => bigint
    2) Non Primitive Datatype
    Arrays => object
    Function => function
    Object => object

  • @sayandeepsoren361
    @sayandeepsoren361 7 หลายเดือนก่อน

    JS is dynamically typed language.
    Because here, we don't need to specify the data type while declaring the variables.
    in JS, data-type of variables can change at runtime.

  • @NikhilvlogsSaharanpur
    @NikhilvlogsSaharanpur 5 หลายเดือนก่อน

    string => datatype string
    null => object
    number => number
    symbol => symbol
    boolean => boolean
    bigint=> bigint
    undefined => undefined

  • @soumadipmajila7962
    @soumadipmajila7962 5 หลายเดือนก่อน

    // undefined => undefined
    // null => object
    // Boolean => boolean
    // Number => number
    // String => string
    // Symbol => symbol
    // BigInt => bigint
    // Array => object
    // Object => object
    // Function => function