본문 바로가기 메뉴 바로가기

먹고 기도하고 코딩하라

프로필사진
  • 글쓰기
  • 관리
  • 태그
  • 방명록
  • RSS

먹고 기도하고 코딩하라

검색하기 폼
  • 분류 전체보기 (28)
    • eat (0)
    • pray (1)
    • code (25)
      • OS (8)
      • javascript (7)
      • three.js (5)
      • node.js (1)
      • git (1)
      • spring (3)
    • anything (2)
  • 방명록

code/javascript (7)
Destructuring assignment

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..

code/javascript 2021. 5. 30. 14:49
Array map, filter, reduce, find, findIndex

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..

code/javascript 2021. 5. 29. 20:10
Variables scope in if/else statement and for/while loop

code/javascript 2021. 5. 14. 09:51
화살표 함수

var test = (a,b) => { return a+b; } test(1,2) // 3 test = a => { return a*2; }; test(2) // 4 test = () => { return 5; } test() // 5 // 화살표 함수의 유일한 문장이 'return'일 때 'return'과 // 중괄호({})를 생략할 수 있다. test = () => 5; test() // 5

code/javascript 2021. 5. 11. 17:15
What is an API?

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..

code/javascript 2021. 5. 7. 14:17
what is a prototype?

A prototype is just a property that every function you create in javascript has that points to an object.

code/javascript 2021. 5. 4. 23:37
[docxtemplater] javascript 로 docx 워드 파일 다운로드 구현

목표 서버에있는 docx 템플릿 파일을 가져와서 데이터를 넣은 후 자동으로 다운로드 되게 만들기 과정 'docxtemplater' javascript library를 사용했다. 아래 demo 참조 https://docxtemplater.com/demo/ docxtemplater - Interactive demo You are currently offline, serving cached version The docxtemplater Demo needs Javascript to work Please enable javascript in your webbrowser to be able to test the module with different templates. Any questions ? Contact u..

code/javascript 2020. 8. 14. 17:05
이전 1 다음
이전 다음
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
TAG
  • real time scheduling
  • multiple-processer scheduling
  • 문제가된다면삭제하겠습니다
  • Copy on Write
  • docxtemplater
  • Program Counter
  • deadlock detection and recovery
  • process control block
  • multiprogramming
  • dmacontroller
  • deadlock prevention
  • nomorecramming
  • deadlock ignorance
  • timesharing
  • modebit
  • Semaphores
  • shortest job first
  • deadlock avoidance
  • message system
  • CPU burst
  • 부모-자식 프로세스
  • exec()
  • CPU Scheduler
  • process context
  • i/odevice
  • devicecontroller
  • I/O burst
  • 혹시이런거쓰면문제유출인가요
  • test and set
  • Peterson's Algorithm
more
«   2025/08   »
일 월 화 수 목 금 토
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
글 보관함

Blog is powered by Tistory / Designed by Tistory

티스토리툴바