Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/carlosal1015/curso-javascript
Curso de Javascript
https://github.com/carlosal1015/curso-javascript
express javascript mongodb
Last synced: about 14 hours ago
JSON representation
Curso de Javascript
- Host: GitHub
- URL: https://github.com/carlosal1015/curso-javascript
- Owner: carlosal1015
- License: gpl-3.0
- Created: 2018-01-09T03:44:35.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-07T17:09:26.000Z (almost 2 years ago)
- Last Synced: 2023-12-13T13:00:56.085Z (11 months ago)
- Topics: express, javascript, mongodb
- Language: JavaScript
- Homepage: https://www.youtube.com/watch?v=NegfS_D2VdA
- Size: 4.94 MB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Curso de Javascript
Miembros: [Franz Victorio](https://github.com/evenhold), [Oromion](https://github.com/carlosal1015), Freider Achic (Chic Chic), Daniel Bautista, [Renzo Salcedo](https://github.com/renzocode) y Mirian.
**Contenido**
1. [Tipo de datos primitivos](#id1)## Tipo de datos primitivos
```js
undefined // Indefinido: Cuando una variable no está definido.
null // Nulo: La forma de comprobar si un valor es nulo es compararlo con el literal null.
number // Númerico
string //Cadena
boolean // Lógicos
```