디지털 논리회로 기본 부품
기본 부품을 이용한 부가적인 회로
NAND | false | true |
---|---|---|
false | true | true |
true | true | false |
NOR | false | true |
---|---|---|
false | true | false |
true | false | false |
XOR | false | true |
---|---|---|
false | false | true |
true | true | false |
byteA = [ 1, 1, 0, 1, 1, 0, 1, 0 ]
byteB = [ 1, 0, 1, 1, 0, 0, 1, 1 ]
결과 = [ 0, 0, 0, 1, 0, 1, 0, 0, 1 ]
byteA = [ 1, 1, 0, 0, 1, 0, 1, 0 ]
byteB = [ 1, 1, 0, 1, 1, 0, 0, 1 ]
결과 = [ 0, 1, 1, 1, 0, 1, 1, 1, 0 ]
git 기본 조작 - 명령어들 - git commit - git branch - 예시 - 참고 - https://github.com/GoogleChrome/puppeteer
mocha 기본 사용법 getting started 2. answer the questions in the command line questionnaire. 참고 - https://docs.npmjs.com/creating-a-package-json-filecreating-a-new-packagejson-file
논리 게이트 디지털 논리회로 기본 부품 1. NOT 2. AND 3. OR 기본 부품을 이용한 부가적인 회로 NAND 게이트 NAND false true --- false true true true true false NOR 게이트 NOR false true --- false true false true fals...
module export - https://soundcloud.com/bo-hyeon-seo/c3jod5uvgahi/s-dhtiH
Computed Properties 출처 : https://javascript.info/object 출처2: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/ObjectinitializerComputedproperty_names 궁금증, 더 공부할 것들...