প্রিমিটিভ ডাটা টাইপ(Primitive data type)
const chips ="Potato";
chips[0]="B"
chips[1]="u"
chips[2]="r"
chips[3]="g"
chips[4]="e"
chips[5]="r"
console.log(chips)Potato console.log( typeof chips );
> stringLast updated
const chips ="Potato";
chips[0]="B"
chips[1]="u"
chips[2]="r"
chips[3]="g"
chips[4]="e"
chips[5]="r"
console.log(chips)Potato console.log( typeof chips );
> stringLast updated