A
Size: a a a
A
TS
typeof null // "object”
😄B
A
TS
TS
G
undefined
, или 123n
G
echo "Abcdef" | node -e "..."
RK
RK
RK
VARIABLE_NAME=VALUE node app.js
RK
set VARIABLE_NAME=VALUE && node app.js
VD
echo "test" | node test.js
process.stdin.setEncoding('utf8');
process.stdin.on('readable', () => {
let chunk;
while ((chunk = process.stdin.read()) !== null) {
process.stdout.write(chunk);
}
});
G
echo "test" | node test.js
process.stdin.setEncoding('utf8');
process.stdin.on('readable', () => {
let chunk;
while ((chunk = process.stdin.read()) !== null) {
process.stdout.write(chunk);
}
});
G
G
K
TS