i
Size: a a a
i
В
ДК
const a = 'first\nsecond\third\nforth'
const b = 'replace'
'first\nsecond\third\nreplace'
DM
DM
readFile()
/ writeFile()
и операция завершилась, то будет вызван соответсвующий колбек (который ты передавал в эти функции)i
1
DM
DM
DM
1
1
L
const a = 'first\nsecond\third\nforth'
const b = 'replace'
'first\nsecond\third\nreplace'
a.split(/\n/).slice(0, -1).concat(b).join('\n')
DM
1
DM
1
DM
DM
readFile('/filename', function callback() {})
DM