//Dart: can multiply string with number
print('x' * 5) // 'xxxxx';

//JS: cannot multiply string with number
console.log('x' * 5) // NaN;