Skip to content

Instantly share code, notes, and snippets.

View mvdqa's full-sized avatar

Matias mvdqa

  • Argentina
  • 20:00 (UTC -03:00)
  • Joined Oct 6, 2025
View GitHub Profile
//First we define our array of objects
const miPlaylist = [
/* template
{
titulo: "",
url: "",
resumen: "",
tags: [],
visto: false,
@mvdqa
mvdqa / testingObj_Func.js
Created October 6, 2025 13:32
Simple test with objects and functions
// Testing with objects and functions---
const games = {
name: "Cyberpunk 2077",
price: 59.99,
isOnSale: false, // Not necessary, could use if games.saleDiscount > 0
// but could be useful for setting discounts ahead of time
saleDiscount: 25
};