Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ BigInt 3/3 | Data Types and Variables
Introduction to JavaScript
セクション 3.  26
single

single

bookBigInt 3/3

メニューを表示するにはスワイプしてください

Comparison with BigInt

We can use the comparison operators like greater than (<) or less than (>) with BigInt numbers just like we do with the numbers, for example.

12
console.log(2n > 1n); console.log(5n < 2);
copy
タスク

スワイプしてコーディングを開始

You are given two BigInt in the following code you have to compare both of them by > and show the result on the console whether revenueOfBankA is greater than revenueOfBankB.

解答

Note:
Comparison operators will be covered in detail in the upcoming sections, but for now, just keep in mind that they are used to compare values or variables. We will work in detail with all kinds of the operator in the upcoming sections.

Summary

  • BigInt is a data type in JavaScript where we can have integers of arbitrary lengths.
  • We can use math operators with BigInt`just like numbers.
  • We can use the comparison operators < and > with the BigInt numbers just like with the numbers.

Switch to desktop実践的な練習のためにデスクトップに切り替える下記のオプションのいずれかを利用して、現在の場所から続行する
すべて明確でしたか?

どのように改善できますか?

フィードバックありがとうございます!

セクション 3.  26
single

single

AIに質問する

expand

AIに質問する

ChatGPT

何でも質問するか、提案された質問の1つを試してチャットを始めてください

some-alt