14 lines
264 B
JavaScript
14 lines
264 B
JavaScript
const str = null;
|
|
console.log(str.substring(1));
|
|
|
|
// if (str !== null && str !== undefined) {
|
|
// console.log(str.substring(1));
|
|
// }
|
|
|
|
// const str = null;
|
|
// console.log(str?.substring(1));
|
|
|
|
// const str = '위키북스';
|
|
// console.log(str?.substring(1));
|
|
|