I restarted learning javascript and I'm coding in a github folder, when I try to debug it on VSCode I get this error:
(node:13088) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead. (Use
Code --trace-deprecation ...
to show where the warning was created)
And this is my code:
const textSize = "Text".length;
console.log(textSize)
Hope someone can help with it
thanks in advance.