Skip to content

Instantly share code, notes, and snippets.

View FernandoVCG33's full-sized avatar
๐Ÿ˜„
Fire

Fernando Vidal Catacora Gonzales FernandoVCG33

๐Ÿ˜„
Fire
View GitHub Profile
@FernandoVCG33
FernandoVCG33 / practica.js
Last active March 13, 2026 20:41
Crear o cambiar una id o class
let elemento1=document.getElementById("elemento1");
let elemento2=document.getElementById("elemento2");
//Metodo1
elemento2.setAttribute("class", "verde");
//crear nuevo
elemento2.setAttribute("id", "hola");
//Metodo2
elemento1.className="amarillo";