JS: Array.prototype.map() & parseInt()

Array.prototype.map()方法與parseInt()方法的結(jié)合使用的深入反思:基礎(chǔ)很重要

1. 寫出下面代碼的執(zhí)行結(jié)果:

var arr = ["1", "2", "3"].map(parseInt);
console.log(arr);

console print:
Active code page: 65001
ERROR: The process "node.exe" not found.
[ 1, NaN, NaN ]
[Finished in 0.6s]

Array.prototype.map()

The map() method creates a new array with the results of calling a provided function on every element in the calling array.
map()方法創(chuàng)建一個(gè)新數(shù)組,其結(jié)果是在調(diào)用數(shù)組中的每個(gè)元素上調(diào)用提供的函數(shù)

JavaScript Demo: Array.map()

var array1 = [1, 4, 9, 16];

// pass a function to map
const map1 = array1.map(x => x * 2);

console.log(map1);
// expected output: Array [2, 8, 18, 32]

Syntax

var new_array = arr.map(function callback(currentValue[, index[, array]]) {
// Return element for new_array
}[, thisArg])

Parameters

  • callback
    Function that produces an element of the new Array, taking three arguments:
    • currentValue:
      The currents element being processed in the array.
    • index/ Optional
      The index of the current element being processed in the array.
    • array/ Optional
      The array map was called upon.
  • thisArg/ Optional
    Value to use as this when executing callback.

Return value

  • A new array with each element being the result of the callback function.

Description

map calls a provided callback function once for each element in an array, in order, and constructs a new array from the results. callback is invoked only for indexes of the array which have assigned values, including undefined. It is not called for missing elements of the array (that is, indexes that have never been set, which have been deleted or which have never been assigned a value).

callback is invoked with three arguments: the value of the element, the index of the element, and the Array object being traversed.

If a thisArg parameter is provided to map, it will be used as callback's this value. Otherwise, the value undefined will be used as its this value. The this value ultimately observable by callback is determined according to the usual rules for determining the this seen by a function.

map does not mutate the array on which it is called (although callback, if invoked, may do so).

The range of elements processed by map is set before the first invocation of callback. Elements which are appended to the array after the call to map begins will not be visited by callback. If existing elements of the array are changed, their value as passed to callback will be the value at the time map visits them. Elements that are deleted after the call to map begins and before being visited are not visited.

Due to the algorithm defined in the specification if the array which map was called upon is sparse, resulting array will also be sparse keeping same indices blank.


parseInt()

The parseInt() function parses a string argument and returns an integer of the specified radix (the base in mathematical numeral systems).

JavaScript Demo: parseInt()

function roughScale(x, base) {
  var parsed = parseInt(x, base);
  if (isNaN(parsed)) { return 0 }
  return parsed * 100;
}

console.log(roughScale(' 0xF', 16));
// expected output: 1500

console.log(roughScale('321', 2));
// expected output: 0

Syntax

parseInt(string, radix);

Patameters

  • string
    The value to parse. If the string argument is not a string, then it is converted to a string(using the ToString abstract operation). Leading whitespace in the string argument is ignored.
  • radix
    An integer between 2 and 36 that represents the radix (the base in mathematical numeral systems) of the above mentioned string.

Return value

An integer number parsed from the given string. If the first character cannot be converted to a number, NaN is returned.

Description

The parseInt function converts its first argument to a string, parses it, and returns an integer or NaN. If not NaN, the returned value will be the integer that is the first argument taken as a number in the specified radix (base). For example, a radix of 10 indicates to convert from a decimal number, 8 octal, 16 hexadecimal, and so on. For radices above 10, the letters of the alphabet indicate numerals greater than 9. For example, for hexadecimal numbers (base 16), A through F are used.

If parseInt encounters a character that is not a numeral in the specified radix, it ignores it and all succeeding characters and returns the integer value parsed up to that point. parseInt truncates numbers to integer values. Leading and trailing spaces are allowed.

Because some numbers include the e character in their string representation (e.g. 6.022e23), using parseInt to truncate numeric values will produce unexpected results when used on very large or very small numbers. parseInt should not be used as a substitute for Math.floor().

If radix is undefined or 0 (or absent), JavaScript assumes the following:

  • If the input string begins with "0x" or "0X", radix is 16 (hexadecimal) and the remainder of the string is parsed.
  • If the input string begins with "0", radix is eight (octal) or 10 (decimal). Exactly which radix is chosen is implementation-dependent. ECMAScript 5 specifies that 10 (decimal) is used, but not all browsers support this yet. For this reason always specify a radix when using parseInt.
  • If the input string begins with any other value, the radix is 10 (decimal).

If the first character cannot be converted to a number, parseInt returns NaN.

For arithmetic purposes, the NaN value is not a number in any radix. You can call the isNaN function to determine if the result of parseInt is NaN. If NaN is passed on to arithmetic operations, the operation results will also be NaN.

To convert number to its string literal in a particular radix use intValue.toString(radix).

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡書系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

  • 今天早上調(diào)休,醒的時(shí)間和往常一樣很有規(guī)律7:30分,同樣和往常一樣滑滑手機(jī),刷刷微博,朋友圈。我決定堅(jiān)持每天跑步,...
    迷路的刺猬君閱讀 260評論 1 0
  • 今天是藝林上學(xué)的第二天,他的積極向上的心態(tài)讓我感到驕傲,他讓我把他的運(yùn)動(dòng)計(jì)步手環(huán)上的鬧鐘設(shè)置好,分別是早晨六...
    A新華洗化閱讀 265評論 0 1
  • 露冷階前桂,雨侵枝上花。幽香關(guān)不住,越院去鄰家。
    飛飛_b4dc閱讀 380評論 2 2
  • 寶寶你好,我是你的媽媽,之前爸爸給你寫了10封信,媽媽看了也有很多感觸。所以這周,媽媽也想分享一些自己的感受給你,...
    年糕佳爸閱讀 890評論 6 11
  • 下午在看臺(tái)大哲學(xué)教授苑舉正所著的《哲學(xué)六講》,看到第五講亞里士多德時(shí),書內(nèi)有這樣一句話“有關(guān)變化的過程,亞里士多德...
    山河萬朵閱讀 384評論 0 4

友情鏈接更多精彩內(nèi)容