https://all-record.tistory.com/165
MDN https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment Destructuring assignment - JavaScript | MDN The destructuring assignment syntax is a JavaScript expression that makes it possible to unpack values from arrays, or properties from objects, into distinct variables. developer.mozilla.org Practice https://codesandbox.io/s/es6-destructuring-forked..
var numbers = [3, 56, 2, 48, 5]; //Map -Create a new array by doing something with each item in an array. console.log(numbers.map((number) => number * 2)); /* 배열 요소 하나하나씩 돌면서 2로 곱한 새로운 배열을 반환 [6, 112, 4, 96, 10] */ //Filter - Create a new array by keeping the items that return true. console.log(numbers.filter((number) => number > 10)); /* 배열 요소 하나하나씩 검사해서 10이상인 요소만 넣은 새로운 배열을 반환 [56, 48] */ //Re..
git switch [branch] git log --oneline git reset --soft HEAD~ : HEAD returns to latest commit git reset --mixed HEAD~ : HEAD returns to latest commit, unstage files git reset --hard HEAD~ : HEAD returns to latest commit, unstage files, discard changes git reset [file name] : unstage [file name]
An Application Programming Interface (API) is a set of commands, functions, protocols, and objects that programmers can use to create software or interact with an external system. e.g., api.kanye.rest, https://v2.jokeapi.dev/joke/Programming?contains=debugging, http://api.openweathermap.org/data/2.5/weather?q=London&appid=******random numbers and letters********&units=metric Endpoint Paths Param..
- Total
- Today
- Yesterday
- Semaphores
- exec()
- process context
- 문제가된다면삭제하겠습니다
- dmacontroller
- multiple-processer scheduling
- deadlock prevention
- Program Counter
- modebit
- 혹시이런거쓰면문제유출인가요
- docxtemplater
- timesharing
- shortest job first
- test and set
- deadlock avoidance
- multiprogramming
- deadlock detection and recovery
- Copy on Write
- devicecontroller
- i/odevice
- Peterson's Algorithm
- 부모-자식 프로세스
- CPU burst
- deadlock ignorance
- message system
- CPU Scheduler
- nomorecramming
- I/O burst
- process control block
- real time scheduling
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
31 |