Its a javascript libary, that im working on, to make coding easier, efficent and (hopefully) more fun, and not stressful.
You can use:
- b
- B
- best
- Best
- BestJS
Some functions
query, is just a quick method to document.querySelector()
const body = b.query('body')
param is what it should query
query, is also another quick method, to elem.appendChild(elem2)
const body = b.query('body')
p = document.createElement('p')
b.appChild(body,p)
1st param, is what it should append to. and 2nd, is what it should append
fast to add a class
b.addclass(element,class)
fast to add remove a class
b.removeclass(element,class)
Want to log, without console.log?
b.clog(message)
alerts you that its working, with version #
b.testbestjs()
make a iframe, with src.
b.iframeC(url)