Thien Nguyen
Results
11
comments of
Thien Nguyen
here is the update : ``` const BRACE_REGEX = /[\{\}]/g; function parseSize (sizeStr) { sizeStr = sizeStr.slice(1, -1); let arr = sizeStr.split(','); let width = parseFloat(arr[0]); let height = parseFloat(arr[1]);...