NOSSO MENU

terça-feira, 10 de novembro de 2020

ola mundo em JAVASCRIPT

 <script>

// ola mundo em javascript


var ola = "ola mundo"

document.write()

/*opcoes para mostrar na tela: 

Writing into an HTML element, using innerHTML.

Writing into the HTML output using document.write().

Writing into an alert box, using window.alert().

Writing into the browser console, using console.log().*/

</script>

terça-feira, 13 de outubro de 2020

Classe em JAVASCRIPT

 <!DOCTYPE html>

<html>

<h1> escripts js</h1>

<script>


// classes em javascript


class soma_sub {

constructor(x, y){

this.x = x;

this.y = y;

}

soma(){

return this.x + this.y;

}

}



// aplicando a classe


result = new soma_sub(5,7);

document.write(result.soma());


</script>

<body>

</body>

</html>

Redes Sociais

anuncios