This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const X = prompt("Ingrese un Número Natural Mayor a 1"); | |
//console.log(X); | |
var COUNT=0,N=X; | |
//console.log(COUNT,N); | |
do{ | |
if(X%N===0){ | |
//Es Divisor | |
COUNT++; | |
}else{ | |
//No es Divisor |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.getElementsByTagName('video')[0].setAttribute('controlslist','download'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.getElementsByTagName('video')[0].setAttribute('controlslist','download'); |