1 2 3 | Math.radians = function(degrees) { return degrees * Math.PI / 180; }; | cs |
라디안 값을 구해야할 일이있었어서 올려둔다~ㅎㅎ
let number = 3;
Math.radians(number);
이런식으로 원래 Math 객체 사용하던 것처럼 깔끔하게 사용가능하다.
'프로그래밍 > JS, Node.js' 카테고리의 다른 글
[Node.js] Selenium 사용법을 익혀보자 (11) | 2021.01.03 |
---|---|
[해결법] CasperJS: /usr/bin/env: ‘python’: No such file or directory (0) | 2021.01.03 |
[Node.js] Nodemailer로 Gmail 연동하여 이메일 보내기 (0) | 2018.10.03 |
[Node.js] Passport.js로 JWT(JSON WEB TOKEN) 인증 로직 구현하기 (0) | 2018.05.16 |
Mysql 테이블 생성 쿼리 (0) | 2018.02.09 |