-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
30 lines (26 loc) · 1 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//*********************************************inicio codigo********************************************************
//*****************************************creacion de la matriz:***************************************************
var mat=[];
mat.push([1,1,1]);
mat.push([1,1,1]);
mat.push([1,1,1]);
//****************************************funcion windows on load***************************************************
window.onload = function()
{
console.log("funciono");
}
//**************************************************jugar***********************************************************
function jugar()
{
//entro a la funcion.....
console.log("entro a funcion jugar");
//obtencion de las variables
var dx=document.getElementById("cx");
var cx=dx.value;
var dy=document.getElementById("cy");
var cy=dy.value;
console.log("las coordenadas son: "+cx+" en x y "+cy+" en y ");
marcarcasillas(cx,cy);
ganador();
posibilidades_djuego();
}