Buscar este blog

martes, 1 de octubre de 2013

condition ? true: false;

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
    <title>condition ? true: false;</title>
    <meta http-equiv="content-type" content="text/html;charset=utf-8" />
    <meta name="generator" content="Geany 0.21" />
</head>
<body>
    <script>
    /*    var a=7;
        if (a==7){
            b = a;
        }
        else{
            b = 3;
        }
        //condition ? true: false;*/
        (a == 7) ? b =a: b=3;
        alert(b);
    </script>
</body>

</html>

No hay comentarios:

Publicar un comentario