분류 전체보기
-
[javascript] socket.io카테고리 없음 2020. 2. 10. 20:44
https://www.websequencediagrams.com/ WebSequenceDiagrams - Draw sequence diagrams online in seconds Your file was not saved because you or someone else updated the file on the server. Please inspect the merged version and save again. Viewing: Automatically Merged Differences Your version Their version Revision history PREMIUM Current {{r.date / 1000 | my www.websequencediagrams.com sequence diag..
-
[javascript] array push, include카테고리 없음 2020. 2. 7. 21:47
https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/Array/push Array.prototype.push() push() 메서드는 배열의 끝에 하나 이상의 요소를 추가하고, 배열의 새로운 길이를 반환합니다. developer.mozilla.org const animals = ['pigs', 'goats', 'sheep']; const count = animals.push('cows'); console.log(count); // expected output: 4 console.log(animals); // expected output: Array ["pigs", "goats", "sheep", "cows"] anim..
-
redis카테고리 없음 2020. 2. 7. 14:20
server/client https://redis.io/ client command Listen for all requests received by the server in real time >monitor https://redis.io/commands/monitor MONITOR – Redis MONITOR is a debugging command that streams back every command processed by the Redis server. It can help in understanding what is happening to the database. This command can both be used via redis-cli and via telnet. The ability to..
-
[javascript] mod , operator카테고리 없음 2020. 2. 6. 20:57
// Number addition and subtraction console.log(2 + 3 - 1); // expected output: 4 // Number multiplication and division console.log(4 * 3 / 2); // 12 / 2 // expected output: 6 // Number remainder and exponential console.log(11 % 3 ** 2); // 11 % 9 // expected output: 2 https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Operators/Arithmetic_Operators 산술 연산자 산술 연산자는 숫자 값(리터럴 또는 변수)을 피연산..