Open brunosduarte opened 3 months ago
This seems to be an excellent post!
if (post === 'excel') {
return true
}
This seems to be a wrong post!
if (post === 'wrong') {
return true
}
This seems to be an odd post!
if (post === 'odd') {
return true
}
Programming languages all have built-in data structures, but these often differ from one language to another. This article attempts to list the built-in data structures available in JavaScript and what properties they have. These can be used to build other data structures. Wherever possible, comparisons with other languages are drawn.
Dynamic typing
JavaScript is a loosely typed and dynamic language. Variables in JavaScript are not directly associated with any particular value type, and any variable can be assigned (and re-assigned) values of all types:
Where Find Me