Bootstrap inevitably changes so I need a way to update bootstrap source code.
It looks like the popular options are:
- modify the source and merge any future changes in
- add files such as custom-variables.less that override previous values
| var numbers = [6, 3, 2, 9]; | |
| console.log(numbers); | |
| do { | |
| unsorted = true; | |
| for (var i = 0; i < numbers.length - 1; i += 1) { | |
| var j = i + 1; | |
| if (numbers[i] > numbers[j]){ | |
| var hold = numbers[i]; | |
| numbers[i] = numbers[j]; |
Bootstrap inevitably changes so I need a way to update bootstrap source code.
It looks like the popular options are: