在本文中,您將了解 JavaScript 中隱含強制轉換與明確強制轉換有何不同。
隱式強制轉換是將值從一種資料型別自動轉換為另一種資料型別。它也稱為類型轉換。
明確強制是根據使用者的需要進行資料類型的轉換。
在這個例子中,讓我們了解隱式強制轉換。
let inputValue = "5" console.log("The input variable is defined as: ") console.log(inputValue, typeof inputValue); let resultValue = Number(inputValue); console.log("The input variable is defined as: ") console.log(resultValue, typeof resultValue);
第 1 步 - 定義一個變數:inputValue 並指派一個整數。
步驟 2 - 將空字串加入到「inputValue」。現在‘inputValue’的類型從數字變成字串。
第 3 步 - 將值及其類型顯示為結果。
在這個範例中,讓我們了解明確強制轉換。
let inputValue = "5" console.log("The input value is defined as a string with value: ", inputValue) let resultValue = Number(inputValue); console.log("The result value after conversion to a number is :", resultValue)
第 1 步 - 定義一個變數:inputValue 並為其指派一個字串值。
步驟 2 - 將字串值型別轉換為整數。現在'inputValue'的類型從字串更改為數字。
第 3 步 - 將值及其類型顯示為結果。
以上是JavaScript 中的隱性強制轉換與明確強制轉換有何不同?的詳細內容。更多資訊請關注PHP中文網其他相關文章!