• js基础


    Js基础

    alert();      英文:警觉    (弹框)

    console.log();   英文:控制台  

    confirm("");      英文:确定    (确定取消)

    prompt("");      英文:提示      (提示框)

    document.write('');   英文:公文/记录   (相当于div)

    S变量的数据类型是解释时动态决定的。它有7中基本数据类型:数值,布尔,字符串,对象,数组,undefined(确定一个已经创建但没有初值的变量),null(表明某个变量值为空)

    数值:数字的

    布尔:对错(true/fouse)       alert(a==a)true   (a==3)fouse

    字符串:“在里面的都叫字符串”;

    对象:在consloe里面出来object

    数组:[33,22]

           Undefined:    var a;   alert(a)

           null

                             JavaScript 算术运算符

    +

    x=y+2

    x=7

    -

    x=y-2

    x=3

    *

    x=y*2

    x=10

    /

    x=y/2

    x=2.5

    %

    求余数 (保留整数)

    x=y%2

    x=1

    ++

    累加

    x=++y

    x=6

    --

    递减

    x=--y

    x=4

    ++     递加                       x=++x       

    (a+2)连加两个

    (a-2)连减两个

    A++

    A=A+1;

    -

    A=A-1;

  • 相关阅读:
    Cents 7 Kubernetes
    Docker registry
    centos 7 安装 docker
    ToList()所带来的性能影响
    C#之Linq、where()、FindAll()的区别
    2.2 数据库高速缓冲区
    ORACLE之autotrace使用
    spring.net简介
    初识批处理
    TIBCO Rendezvous — 技术介绍
  • 原文地址:https://www.cnblogs.com/1997WY/p/10218675.html
Copyright © 2020-2023  润新知