Principal
Fragmentos de código
Almanaque CSS
Screencasts de video
Tutorial de IA
BigData
Construir sitio web
Tutorial de C #
Tutorial de DBMS
Tutorial de diseño y algoritmos
Sobresalir
Java
JavaScript
Tutorial de redes
Photoshop
PHP
Pitón
SAP Tutorial
Tutorial de ingeniería de software
Pruebas
Unix
Principal
›
Fragmentos de código 2024
Compruebe si el número es par / impar - Trucos CSS
function isEven(value) ( if (value%2 == 0) return true; else return false; )