fix: wrong JavaScript type content (#6319)

* fix: Wrong JavaScript type content

* Update string@1RcwBHU3jzx0YxxUGZic4.md

---------

Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>
pull/6325/head
Devan 3 months ago committed by GitHub
parent d2ef68bb50
commit 961e11670d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 20
      src/data/roadmaps/javascript/content/string@1RcwBHU3jzx0YxxUGZic4.md

@ -1,21 +1,7 @@
# Primitive Types
# String
In JavaScript, a primitive (primitive value, primitive data type) is data that is not an object and has no methods or properties. A significant difference between primitive data types and non-primitives is that primitive types can only contain one value, and that value must be of the same primitive type. In contrast, non-primitives can accommodate a variable number of values, and these values can be of different primitive types. This flexibility is evident in data structures like arrays and objects.
In the context of primitives, it's important to note that they do not possess methods or properties. However, JavaScript enables access to methods and properties associated with primitive types such as string, number, and boolean. this functionality is due to JavaScript's ability to implicitly convert primitives to objects with wrapper objects when necessary. When properties are accessed on primitives, JavaScript auto-boxes the value into a wrapper object and accesses the property on that object instead.
There are 7 primitive data types:
- `string`
- `number`
- `bigint`
- `boolean`
- `undefined`
- `Symbol`
- `null`
Most of the time, a primitive value is represented directly at the lowest level of the language implementation.
String is a primitive type that holds a sequence of characters. String in Javascript is written within a pair of single quotation marks '' or double quotation marks "". Both quotes can be used to contain a string but only if the starting quote is the same as the end quote.
Visit the following resources to learn more:
- [@article@Primitive](https://developer.mozilla.org/en-US/docs/Glossary/Primitive)
- [@article@String](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String)

Loading…
Cancel
Save