Jump to content
Fórum Script Brasil
  • 0

Calculo com javascript


nvzinho

Question

ola galera alguém poderia me da uma ajuda aqui ?

alguém sabe como pegar o dia, mes, ano pelo js e multipicar por 3

tipo assim dia x mes x ano x 3

<script type="text/javascript">
function data(){
    Hoje = new Date();
    Data = Hoje.getDate();
    Dia = Hoje.getDay();
    Mes = Hoje.getMonth();
    Ano = Hoje.getFullYear();
    cal = Data*Mes*Ano*3;
   
    if(Data < 10) {
        Data = "0" + Data;
    }
    NomeDia = new Array(7)
    NomeDia[0] = "domingo"
    NomeDia[1] = "segunda-feira"
    NomeDia[2] = "terça-feira"
    NomeDia[3] = "quarta-feira"
    NomeDia[4] = "quinta-feira"
    NomeDia[5] = "sexta-feira"
    NomeDia[6] = "sábado"

    NomeMes = new Array(12)
    NomeMes[0] = "1"
    NomeMes[1] = "2"
    NomeMes[2] = "3"
    NomeMes[3] = "4"
    NomeMes[4] = "5"
    NomeMes[5] = "6"
    NomeMes[6] = "7"
    NomeMes[7] = "8"
    NomeMes[8] = "9"
    NomeMes[9] = "10"
    NomeMes[10] = "11"
    NomeMes[11] = "12"

    document.write(""+ Data + "" + NomeMes[Mes] + "" + Ano);
    document.write(""+ cal +"");
}
</script>
Dia*Mes*Ano*3;

Edited by nvzinho
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...