JSFiddle - React, Tailwind, and code Playground

lowercase an array of strings

by Yurii Predborskyi

JavaScript

let arr = ['BlackBerry (Enterprise edition)',
'Business Everywhere 1GB',
'Business Everywhere 200MB',
'Business Everywhere 2GB',
'Business Everywhere 5 GB',
'Business Everywhere for iPhone',
'iPhone for Business',
'National Call Unlimited',
'National Unlimited',
'National Unlimited Traveller',
'Roaming Internet Europe 1.5GB',
'Roaming Internet World 200 MB',
'Traveller',
'World Traveller Data 500MB',
'Internet Everywhere daily '];

arr.forEach(function(el) {document.write("'" + el.toLowerCase() + "'," + '<br>');});