DAY 9)数字表示法(復習)


」の数の表示


通常はSubline textツールを使用します
html空のドキュメント
html+tapをクリックしてhtmlの基本サンプルを完了します.
body内でscript+tapを押すと自動的に完了しjavascriptコードを完了します.
<!DOCTYPE html>
<html>
<head>
	<title></title>
</head>
<body>
	<script type="text/javascript">
		alert(1);

	</script>

</body>
</html>
👉 数値(整数、実数)
ここでalert(1)<−は整数(-3,−2,−1,0,1,2,3,4...などと呼ぶ)
実数(小数点が存在する数字、0と1の間の1.1、1.2、1.3…など)

追加


alert(1.1+1.1);

乗算


alert(1.1*1.1);

分割ぶんかつ


alert(1.1/1.1);

開発者ツールでコードを実行するとき

  • alert(6/2);
    ->3警告点表示出力
  • console.log(6/2)
    ->警告ウィンドウが表示されず、直ちに3に出力されます(
  • )
  • 1
    ->1が出力されました.console.ログ入力なし、正常出力
  • 1+1
    ->2,
  • 」の数の演算


    演算をしたいとき。


    ✅ pow


    Math.pow(3,2);
    ->9
    3に2回乗じた出力
    Math(カテゴリ)にはpowというコマンドがあり、powというコマンドを使用して平方を使用します.

    ✅ round


    Math.round(10.6);
    ->11
    四捨五入

    ✅ celi


    Math.ceil(10.2);
    ->11
    最も近い整数に上げる

    ✅ floor


    Math.floor(10.2);
    ->10
    最も近い整数の下に下がる

    ✅ sqrt


    Math.sqrt(9);
    ->3
    平方根

    ✅ random


    Math.random();
    ->0.2345346
    ->0.3945879
    ランダム小数点

    ✅ 100*Math.random()


    100*Math.random();
    ->67.34580374
    ->25.39483579485
    100未満の任意の桁数

    ✅ Math.round(100*Math.random())


    Math.round(100*Math.random());
    ->89
    ->76
    小数点なしの100未満の任意の桁数

    文字の表現

    alert("coding everybody");
    ->coding everybody
    
    alert('coding everybody');
    ->coding everybody
    
    alert("coding everybody');
    ->syntaxError가 남 
    아직 큰따움표의 문자가 끝나지 않았는데 괄호)로 끝나서 문법 에러가 남 
    
    alert("coding everybody'");
    ->coding everybody'
    '은 문자일 뿐 "" 로 문자가 끝남 

    ✅ '', ""


    ""小号:文字
    ""Lサイズ:文字

    89 escape(文字キャラクタを解除)


    「小引用符の文字」にするには、前の
    alert('egoing's coding everybody');
    ->出力egoning
    したがって使用する必要があります
    alert('egoing\'s coding everybody');
    ->egoning'sコード全員

    ✅ type of


    タイプ解析
    1
    ->1
    숫자 data type
    
    "1"
    ->"1"
    문자 data type
    
    typeof 1
    ->"number"
    
    typeof "1"
    ->"string"
    

    文字列(=string)


    typeof "1"
    ->"string"

    テキストに関するコマンド


    ✅ \n


    改行する
    
    	<script type="text/javascript">
    	alert("coding\neverybody");
    	</script>
    
    ->
    coding
    everybody
    出力先

    ✅ +


    文字の加算
    <script type="text/javascript">
    	alert("coding"+"everybody");
    	</script>
    -> codingeverybody
    出力先
    👉 コードと全員の間に間隔はありません

    ✅ " "


    スペース「」を追加するとスペースが生成されます
    	<script type="text/javascript">
    	alert("coding"+" "+"everybody");
    	</script>
    
    

    数値と文字列の加算の違い


    数値
    1+1
    ->2
    テキスト
    "1"+"1"
    ->"11"

    ✅ .length


    Stringのビット数のチェック
    "coding everybody".length
    ->16

    ✅ Indexof


    codeと呼ばれる情報を表す0,1,2,3.
    indexofに入力された値がcの場合、cの情報は0に等しいことを示します.
    
    "code".indexOf("c")
    ->0
    "code".indexOf("o")
    ->1
    "code".indexOf("d")
    ->2