前言
Javascript Basics(基础)
Sum two numbers
需求:
Write a function that takes two numbers (a and b) as argument
Sum a and b
Return the result
我的提交(作者答案)
function myFunction(a, b) {
return a + b;
}
涉及知识(加法)
加法
-
如果两个操作数都是数值,遵循下列规则
操作数 返回结果 有一个操作数时NaN NaN Infinity
+Infinity
Infinity -Infinity
+-Infinity
-Infinity Infinity
+-Infinity
NaN +0
++0
+0 -0
+-0
-0 +0
+-0
+0 -
如果有一个操作数是字符串,遵循下列规则
操作数 结果 "string1"
+"string2"
”stringstring2“ 只有一个操作数是字符串,则将另一个操作数转换为字符串 两个字符串拼接 ==注意:不同操作数转换成字符方法不同==
操作数 使用方法 对象、数值或布尔值 toString()
undefined
和null
String()
==注意:如果操作数为上述表中的操作数,则调用它们的相应方法取得相应字符串值,然后再应用前面关于字符串的规则。==
Comparison operators, strict equality
需求:
Write a function that takes two values, say a and b, as arguments
Return true if the two values are equal and of the same type
我的提交(作者答案)
function myFunction(a, b) {
return a === b;
}
涉及知识(相等操作符)
相等和不等
相等 | 不等 |
---|---|
== | != |
相等返回true | 不等返回true |
-
都会先转换操作数(强制转换),再比较相等性
-
转换不同数据类型时,遵循基本规则
-
布尔值比较,false为0,true为1
表达式 值 false == 0 true true == 1 true true == 2 false -
字符串比较,先将字符串转换成数值(ASCII码数值)
表达式 值 "5" == 5 true -
对象比较,要调用对象的
valueOf()
方法,得到基本类型值再比较
-
-
比较时,遵循的规则
-
null
和undefined
是相等的表达式 值 null == undefined true -
比较相等性之前,不能将
null
和undefined
转换成其他任何值表达式 值 undefined == 0 false null == 0 false -
有一个操作数是
NaN
。相等返回false
,不相等返回true
(==注意:即使两个操作数都是NaN
,NaN
不等于NaN
,返回false
==)表达式 值 "NaN" == NaN false 5 == NaN false NaN == NaN false NaN != NaN false -
两个操作数都是对象,如果两个操作数都指向同一个对象,则相等返回
true
,相反返回false
-
全等和不全等
全等 | 不全等 |
---|---|
=== | !== |
全等和不全等
与相等和不等
的区别:
=== 和!== | == 和!= | |
---|---|---|
比较前操作数是否需要转换 | 不需要 | 需要 |
示例
var result1 ={"55" == 55 }; //true
var result2 ={"55" === 55 }; //false
var result3 ={"55" != 55 }; //false
var result4 ={"55" !== 55 }; //true
var result5 ={null == undefined }; //true
var result6 ={null === undefined }; //false
==为了保持代码中数据类型的完整性,推荐使用全等和不全等操作符==
Get type of value
需求
Write a function that takes a value as argument
Return the type of the value
我的提交(作者答案)
function myFunction(a) {
return typeof a;
}
涉及知识(typeof操作符)
typeof操作符
typeof
:检测变量的数据类型
格式: typeof 所需监测变量名
返回字符串 | 变量类型 |
---|---|
undefined | 未定义 |
boolean | 布尔值 |
string | 字符串 |
number | 数值 |
object | 对象或null |
function | 函数 |
Get nth character of string
需求:
Write a function that takes a string (a) and a number (n) as argument
Return the nth character of 'a'
我的提交
function myFunction(a, n) {
return a.charAt(n-1);
}
作者答案
function myFunction(a, n) {
return a[n - 1];
}
涉及知识(charAt()方法、数组读取)
charAt()
方法
- 返回指定位置的字符,返回字符长度为1。
- 格式:stringObject.charAt(index)
stringObject
:字符串对象index
:==必需==,字符所在的字符串中的下标(==注意:字符串中第一个字符的下标是 0。如果参数index
不在 0 与 string.length 之间,该方法将返回一个空字符串==)
数组读取
- 在读取和设置数组的值时,要用
[ ]
并提供相应值的基于0的数字索引。 - 格式:array[index]
array
:数组名index
:索引
Remove first n elements of an array
需求:
Write a function that takes an array (a) as argument
Remove the first 3 elements of 'a'
Return the result
我的提交
function myFunction(a) {
return a.slice(3,a.length);
}
作者答案
function myFunction(a) {
return a.slice(3);
}
涉及知识(slice()方法)
slice()方法
- 以新的数组对象,返回数组中被选中的元素
- 格式:array.slice(start,end)
array
:数组名start
:可选。整数,指定从哪里开始选择- 省略:类似于
0
- 正数:从数组的头部进行选择(第一个元素的索引为0)
- 负数:从数组的末尾进行选择
- 省略:类似于
end
:可选。整数,指定结束选择的位置(==选择不包括end
索引下的元素==)- 省略:将选择从开始位置到数组末尾的所有元素
- 负数:从数组末尾进行选择
- 返回值:新的数组,包含选定的元素。
- 不会改变原始数组
Get last n characters of string
需求:
Write a function that takes a string as argument
Extract the last 3 characters from the string
Return the result
我的提交(作者答案)
function myFunction(str) {
return str.slice(-3);
}
涉及知识(slice()方法)
Get first n characters of string
需求:
Write a function that takes a string (a) as argument
Get the first 3 characters of a
Return the result
我的提交(作者答案)
function myFunction(a) {
return a.slice(0, 3);
}
涉及知识(slice()方法)
Extract first half of string
需求:
Write a function that takes a string (a) as argument
Extract the first half a
Return the result
我的提交(作者答案)
function myFunction(a) {
return a.slice(0, a.length / 2);
}
涉及知识(slice()方法)
Remove last n characters of string
需求:
Write a function that takes a string (a) as argument
Remove the last 3 characters of a
Return the result
我的提交(作者答案)
function myFunction(a) {
return a.slice(0, -3);
}
涉及知识(slice()方法)
Return the percentage of a number
需求:
Write a function that takes two numbers (a and b) as argument
Return b percent of a
我的提交
function myFunction(a, b) {
return a/100*b;
}
作者答案
function myFunction(a, b) {
return b / 100 * a
}
涉及知识(乘法、除法)
乘法
-
由一个
*
表示,用于计算两个数值的乘积 -
处理特殊值下,遵循特殊规则
操作数类型 返回结果 数值
*数值
常规的乘法计算。(如果乘积超过ECMAScript数值表示范围则返回 Infinity
或-Infinity
)有一个操作数是NaN NaN Infinity
*0NaN Infinity
*非0值
Infinity
或-Infinity
Infinity
*Infinity
Infinity
==注意:如果有一个操作数不是数值,则在后台调用Number()将其转换为数值,然后再应用上面的规则。==
除法
-
由一个
/
表示。 -
对特殊值的特殊处理规则
操作数类型 返回结果 数值
/数值
常规的除法计算。(如果乘积超过ECMAScript数值表示范围则返回 Infinity
或-Infinity
)有一个操作数是NaN NaN Infinity
/Infinity
NaN 0/0 NaN 非零的有限数
/0Infinity
或-Infinity
Infinity
/非零的有限数
Infinity
或-Infinity
==注意:如果有一个操作数不是数值,则在后台调用Number()将其转换为数值,然后再应用上面的规则。==
Basic JavaScript math operators
需求:
Write a function that takes 6 values (a,b,c,d,e,f) as arguments
Sum a and b
Then substract by c
Then multiply by d and divide by e
Finally raise to the power of f and return the result
Tipp: mind the order
我的提交
function myFunction(a, b, c, d, e, f)
{
var result=Math.pow(((a+b)-c)*d/e,f)
return result;
}
作者答案
function myFunction(a, b, c, d, e, f) {
return (((a + b - c) * d) / e) ** f;
}
涉及知识(Math.pow()方法)
Math.pow()方法
- 求幂
- 格式:Math.pow(base,exponent)
base
:基数exponent
:指数
Check if a number is even
需求:
Write a function that takes a number as argument
If the number is even, return true
Otherwise, return false
我的提交
function myFunction(a) {
return a%2==0?true:false;
}
作者答案
function myFunction(a) {
return a % 2 === 0
}