how to debug knonckout variable
<div data-bind="text: ko.toJSON(VARIABLE, null, 2)"></div>
<div data-bind="mageInit: {'collapsible':{'openedState': '_active', 'active': true}}">
...
</div>
<textarea class="input-text" data-bind="attr:{placeholder: $t('Enter your comment...')} "></textarea>
<a href="#" data-bind="attr:{href: product_url}, html: name" class="product-item-link"></a>
<span data-bind="i18n: 'Forgot Your Password?'"></span>
<strong class="delivery-price">
<span data-bind="i18n: 'from '"></span>
<span data-bind="html: window.checkoutConfig.minExpress"></span>
<span data-bind="i18n: ' $'"></span>
</strong>
or
<span data-bind="i18n: 'from ' + window.checkoutConfig.minExpress + ' $'"></span>
<div class="minicart">
<span class="text"><!-- ko i18n: 'My Cart' --><!-- /ko --></span>
<span class="qty empty"
data-bind="css: { empty: !!getCartParam('summary_count') == false },
attr: { title: $t('Items in Cart') }">
<!-- ko text: getCartParam('summary_count') --><!-- /ko -->
</span>
</dv>
<img data-bind="attr: { src: require.toUrl('images/delivery-standard.png') }" class="method-icon" width="47" height="32" alt="Example image">
<img data-bind="attr: { data-src: require.toUrl('images/delivery-standard.png') }" class="method-icon lazyload" width="47" height="32" alt="Example lazy image">
<img data-bind="attr: { src: require.toUrl('Magento_Checkout/images/abc.png') }" width="50" height="50" alt="Example module image" />
<img data-bind="attr: { data-src: require.toUrl('Magento_Checkout/images/abc.png') }" class="lazyload width="50" height="50" alt="Example module lazy image" />
<!-- ko if: isVisible-->
...
<!-- /ko -->
<div data-bind="if: isVisible"></div>
<!-- ko if: getCartParam('summary_count') -->
<!-- ko ifnot: isVisible-->
...
<!-- /ko -->
<div data-bind="ifnot: isVisible"></div>
<!-- ko ifnot: getCartParam('summary_count') -->
<!-- ko text: 'Some text' --><!-- /ko -->
<div data-bind="text: 'Some text'"></div>
<!-- ko i18n: 'Sign In' --><!-- /ko -->
<span data-bind="i18n: 'Sign In'"></span>
<!-- ko foreach: elements -->
...
<!-- /ko -->
<!-- ko component: 'componentName' --> <!-- /ko -->
<div data-bind="component: 'componentName'"> </div>
<div data-bind="css: {_visible: isVisible}"> </div>
<div data-bind="attr: {title: title}"> </div>
<div data-bind="style: {color: redColor}"> </div>
<div data-bind="html: '<span/>'"> </div>
<div data-bind="click: onClick"> </div>
<div data-bind="event: {mouseover: showEl}"> </div>
<div data-bind="event: {mouseover: showEl}"> </div>
<form data-bind="submit: onSubmit"> </form>
<select data-bind="options: optionsList"> </select>
<select data-bind="options: optionsList, selectedOptions: value"> </select>
<select data-bind="options: optionsList, optionsText: 'label'"> </select>
<select data-bind="options: optionsList, optionsValue: 'value'"> </select>
<input data-bind="enable: isEnabled"/>
<input data-bind="enable: isEnabled"/>
<input data-bind="hasFocus: onFocus"/>
<input data-bind="textInput: value"/>
<input data-bind="value: value"/>
<input type="checkbox" data-bind="checked: isChecked"/>
<input type="radio" data-bind="value: value, checked: isSelected" />
<input type="checkbox" data-bind="checkedValue: $data, checked: isChecked"/>
<!-- ko with: element --><!-- /ko -->
<div data-bind="with: element"></div>