<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title>js 基础</title> <script type="text/css" src="xxx.js"></script> <!--外链式 --> </head> <body> <p onclick="alert('我是行内式')">你好</p> <script type="text/javascript"> //内嵌式 // 输出语句 alert("我是内嵌式"); prompt("请输入:"); confirm("你好吗?"); console.log("我是控制台输出"); console.error("我是错误");//了解 console.warn("我是警告");//了解 document.write("<h1 id="我是h-标签">我是h1标签</h1>");//页面输出内容而且识别标签 //数据类型 var str1 = "aa"; var str2 = "123"; var num = 123; var bool = true; //true false var kong =null; var wu ; //undefined 未定义 //查看数据类型 (typeof 变量 ) var type = typeof(str1); //类型转换 成数字number var str = "123.2a";//字符串类型的数字 var bool = true; var num1 = parseInt(str); //取第一部分数字 并取整 没有数字Nan 输出:123 var num2 = parseFloat(str); //取第一部分数字 保留小数 输出:123.2 var num3 = Number(str); //有非数字就会报 Nan 没有就全部转换成数字 console.log(typeof Number(bool)); //boolean 转成1 console.log(typeof (str-0)); //数子类型的字符串在处"+"外都会有隐士类型转换 console.log(typeof (bool-0)); console.log(typeof (str*1)); console.log(typeof (bool*1)); console.log(typeof (str/1)); console.log(typeof (bool/1)); console.log(typeof typeof (bool/1)); //数据类型是用string定义的 //类型转换 成字符串String var num4 = 123; var num5 = num+""; //"+"在有字符串在于运算的时候表示拼接 而非相加 var num6 = num.toString(); var num7 = String(num2); console.log(typeof num5); //进制转换 var num8 = parseInt(111,2); //任意进制转换成十进制。111:值,2:进制 输出:7 var num = 10; var renyi = num.toString(16); //十进制转换成任意进制 输出:a //特殊的 undefined 和 null console.log(undefined == null); //true console.log(undefined === null); //false console.log(undefined+10); // Nan 不是一个数字 console.log(null+10); //10 //操作符种类 一,算数运算符(+—*/...) a) 一元运算符:正号,负号,++,--,平方等一个变量就能运算 b) 二元运算符:+-*/%等两个变量才能运算 c) 三元运算符: 值1?值2:值3; 二,逻辑运算符( ||&& ! )(或且非) 三,比较运算符(<,>,==,>=...) 四,赋值运算符(=,+=,-=,*=,/=,%=) //优先级 1 () 2 !,-(负数),++,-- (正数省略+)(一元运算) 3 *,/,% 4 +,- (加,减)(二元运算) 5 <,<=,<,>= (一级逻辑运算) 6 ==,!=,===,!==, (二级逻辑运算) 7 && (三级级逻辑运算) 8 || 9 ?: (三元运算) 10 =,+=,-=,*=,/=,%= (赋值运算) // && 和 || 运算 一 && 链接两个boolean类型,有一个是false结果就是false, A与B 都是true取后面,都是false取前面 二 || 链接两个boolean类型,有一个是true结果就是true, A或B 都是true取前面,都是false取后面 </script> </body> </html>
This article explains the basic data types and conversion base operators of js. For more related content, please pay attention to the PHP Chinese website.
Related recommendations:
The above is the detailed content of js basic data types and conversion base operators. For more information, please follow other related articles on the PHP Chinese website!

JavaScriptisnotbuiltonCorC ;it'saninterpretedlanguagethatrunsonenginesoftenwritteninC .1)JavaScriptwasdesignedasalightweight,interpretedlanguageforwebbrowsers.2)EnginesevolvedfromsimpleinterpreterstoJITcompilers,typicallyinC ,improvingperformance.

JavaScript can be used for front-end and back-end development. The front-end enhances the user experience through DOM operations, and the back-end handles server tasks through Node.js. 1. Front-end example: Change the content of the web page text. 2. Backend example: Create a Node.js server.

Choosing Python or JavaScript should be based on career development, learning curve and ecosystem: 1) Career development: Python is suitable for data science and back-end development, while JavaScript is suitable for front-end and full-stack development. 2) Learning curve: Python syntax is concise and suitable for beginners; JavaScript syntax is flexible. 3) Ecosystem: Python has rich scientific computing libraries, and JavaScript has a powerful front-end framework.

The power of the JavaScript framework lies in simplifying development, improving user experience and application performance. When choosing a framework, consider: 1. Project size and complexity, 2. Team experience, 3. Ecosystem and community support.

Introduction I know you may find it strange, what exactly does JavaScript, C and browser have to do? They seem to be unrelated, but in fact, they play a very important role in modern web development. Today we will discuss the close connection between these three. Through this article, you will learn how JavaScript runs in the browser, the role of C in the browser engine, and how they work together to drive rendering and interaction of web pages. We all know the relationship between JavaScript and browser. JavaScript is the core language of front-end development. It runs directly in the browser, making web pages vivid and interesting. Have you ever wondered why JavaScr

Node.js excels at efficient I/O, largely thanks to streams. Streams process data incrementally, avoiding memory overload—ideal for large files, network tasks, and real-time applications. Combining streams with TypeScript's type safety creates a powe

The differences in performance and efficiency between Python and JavaScript are mainly reflected in: 1) As an interpreted language, Python runs slowly but has high development efficiency and is suitable for rapid prototype development; 2) JavaScript is limited to single thread in the browser, but multi-threading and asynchronous I/O can be used to improve performance in Node.js, and both have advantages in actual projects.

JavaScript originated in 1995 and was created by Brandon Ike, and realized the language into C. 1.C language provides high performance and system-level programming capabilities for JavaScript. 2. JavaScript's memory management and performance optimization rely on C language. 3. The cross-platform feature of C language helps JavaScript run efficiently on different operating systems.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

WebStorm Mac version
Useful JavaScript development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)
