Skip to content

J-uds/basic-js-II

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

🎠 Ejercicios básicos en Javascript parte II

Objetivo

Vamos a practicar bucles y condicionales, deberás abrir el archivo index.html y verlo en el navegador con Live Server, lee lo que muestra en pantalla y sigue las instrucciones que te permitirán practicar estructuras de control básicas de Javascript.

💻 Installation

Download repository

  1. Download the ZIP from GitHub which contains all required files.

GitHub Basic js II

  1. Extract the ZIP file in your device.
  2. Open the index.html file with your browser.

Clone repository

Requirement:

  • Install Git in your device.
  1. Clone the repositoy from GitHub:
git clone https://github.com/J-uds/basic-js-II

or

git clone [email protected]:J-uds/basic-js-II.git
  1. Open the index.html file with your browser.

Execute with Docker Desktop (local)

Requirements:

  • Install Docker desktop in your device. Docker Desktop Download
  • Download or clone the repository.
  • Make sure that you are in the repository folder in the terminal
  1. Build an image from the Dockerfile.
docker build -t <image-name> -f <dockerfile-name> .

For example, using Dockerfile:

docker build -t basic-js-ii -f Dockerfile .
  1. Run the image to start the container.
docker run -p 8080:80 --name <container-name> <image-name>

For example:

docker run -p 8080:80 --name basic-js-ii-v1 basic-js-ii
  1. Open in a browser the port 8080.

Open the port

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • JavaScript 67.5%
  • HTML 31.3%
  • Dockerfile 1.2%