일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- DataFrame
- python matplotlib
- single cell analysis
- ChIPseq
- github
- CUT&RUN
- PYTHON
- MACS2
- single cell
- CUTandRUN
- drug muggers
- drug development
- scRNAseq analysis
- Bioinformatics
- js
- CSS
- 비타민 C
- javascript
- pandas
- 싱글셀 분석
- EdgeR
- ngs
- cellranger
- matplotlib
- julia
- scRNAseq
- single cell rnaseq
- Batch effect
- Git
- HTML
Archives
- Today
- Total
목록js method (1)
바이오 대표
[JS] Object(객체) - key, value, method
Object(객체)는 boolen, number,strin, undefined를 제외한 나머지라 할 수 있다 const ObjectName = { key : value, } const superman = { name: 'yeji' age: 25, } 객체 안에 함수가 들어 갈 수 있고 이 함수를 method 라 칭한다 const ObjectName = { key : value, method: function(){ } } * ObjectName.method( ); 로 불러낼 수 있다. * method 안에서 this를 이용할 수 있다 const superman = { name: 'yeji' age: 25, sayHello: function(){ console.log(`Hi, ..
Front_end
2021. 10. 1. 01:28