Tutorial Gateway

  • C
  • C#
  • Java
  • Python
  • SQL
  • MySQL
  • Js
  • BI Tools
    • Informatica
    • Talend
    • Tableau
    • Power BI
    • SSIS
    • SSRS
    • SSAS
    • MDX
    • R Tutorial
    • Alteryx
    • QlikView
  • More
    • C Programs
    • C++ Programs
    • Go Programs
    • Python Programs
    • Java Programs

JavaScript COS

by suresh

The JavaScript Cos function is a Math function which calculates the Trigonometry Cosine for the specified expression. The Cos function returns the value between -1 and 1. The syntax of the JavaScript Cos Function is

Math.cos(number);

The mathematical formula of the JavaScript Trigonometry Cosine function.
COS(x) = Length of the Adjacent Side / Length of the Hypotenuse

JavaScript Cos Function Example

In this JS COS example, We are going to find the Cosine values of different data types and display the output. Please refer to ACOS Function to know the JavaScript Arc Cosine.

<!DOCTYPE html>
<html>
<head>
    <title> JavaScript COS Function </title>
</head>
<body>
  <h1> JavaScript COS Function </h1>
  <p id = "Pos"></p>
  <p id = "Neg"></p>
  <p id = "Dec"></p>
  <p id = "Neg_Dec"></p>
  <p id = "Str"></p>
  <p id = "Exp"></p>
  <p id = "Null"></p>
  <p id = "Multi"></p>
  <script>
    document.getElementById("Pos").innerHTML = Math.cos(20);
    document.getElementById("Neg").innerHTML = Math.cos(-10);
    document.getElementById("Dec").innerHTML = Math.cos(40.45);
    document.getElementById("Neg_Dec").innerHTML = Math.cos(-60.75);
    document.getElementById("Str").innerHTML = Math.cos("JavaScript");
    document.getElementById("Null").innerHTML = Math.cos(null);
    document.getElementById("Multi").innerHTML = Math.cos(0.25 + 0.55 - 0.77);
  </script>
</body>
</html>
JavaScript COS Function

Placed Under: JavaScript

  • SQL DML, DDL, DCL & TCL Cmds
  • SQL NOT EXISTS Operator
  • SQL UPDATE from SELECT
  • SQL AFTER UPDATE Triggers
  • SQL Get Column Names in Table
  • SQL IF ELSE
  • SQL ACID Properties
  • SQL FOR XML PATH
  • Java Two Dimensional Array
  • Java Perfect Number Program
  • Java Count Digits in a Number
  • C Compare Two Strings Program
  • C Print Prime Numbers 1 to 100
  • C program to Reverse a String
  • C Palindrome Number Program
  • C Program for Palindrome String
  • C Remove Duplicate String Chars
  • C Square of a Number Program
  • C Sum and Average of N Number
  • Python Fibonacci Series program
  • Python Area Of Circle Program
  • Python Prime Numbers 1 to 100
  • Python Program for Leap Year
  • Tableau Rank Calculation
  • Tableau Google Maps usage
  • Power BI Format Dates
  • Power BI Top 10 Filters
  • Power BI – Create Hierarchy
  • Power BI DAX Math Functions
  • Learn SSIS in 28 Days
  • SSIS Transformations
  • SSIS Incremental Load
  • SSRS Drill Through Reports
  • SSRS Drill Down Reports
  • R Programming Tutorial

Copyright © 2021 · All Rights Reserved by Suresh

About Us | Contact Us | Privacy Policy