hpux, tusc

카테고리 없음 2020. 8. 13. 14:13

바탕화면 > 우 클릭 > 새로만들기 > 바로가기

explorer.exe ms-settings:apps-volume

https://sundstedt.se/blog/quick-guide-how-to-add-desktop-shortcut-to-app-volume-device-preferences/


let 은 다시 선언하지 못한다.

 

Input:
console.log(x);
let x=5;
console.log(x);
Output:
Error

https://www.geeksforgeeks.org/difference-between-var-and-let-in-javascript/


r




bash, loop

shell 2020. 8. 3. 17:33
#!/bin/bash
echo "Bash version ${BASH_VERSION}..."
for i in {0..10..2}
  do 
     echo "Welcome $i times"
 done

(https://www.cyberciti.biz/faq/bash-for-loop/)


SWC

카테고리 없음 2020. 8. 3. 17:16