Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Null-Austin authored Oct 4, 2024
1 parent 3ecacf2 commit dd91abe
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion Best.JS
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
console.log('This is running BestJS')

bjsversion = 1.0

console.log('Howdy from BestJS, ' + bjsversion)
const Best = { //You can also use, b, B, best, BestJS.
query: function(selector) {
return document.querySelector(selector)
Expand All @@ -17,6 +20,12 @@ const Best = { //You can also use, b, B, best, BestJS.
ele.innerHtml = html
ele.style = style
return ele
},
clog: function(message){
console.log(message)
},
testbestjs: function(){
alert('Well, if your wondering, well its working. (' + bjsversion + ')')
}
}

Expand Down

0 comments on commit dd91abe

Please sign in to comment.